Run ID:127177
提交时间:2025-07-25 11:06:14
#include<bits/stdc++.h> using namespace std; string a; int main(){ int i; for(i=1;i<=10;i++){ if(i%3==0){ cout<<i<<endl; continue; } } return 0; }