Run ID:100283
提交时间:2024-12-07 12:33:40
# include<bits/stdc++.h> using namespace std; int main(){ for(int i;i<=100;i++){ if(i%3==0){ cout<<i<<" "; } } return 0; }