Run ID:142032

提交时间:2025-12-29 17:04:38

#include<iostream> using namespace std; int main(){ for(int i=100;i>=3;i--){ if(i%3==0){ cout<<i<<" "; } } }