#include<iostream> using namespace std; int main() { int i,j; for (i=0; i<=99; i++) { j=i*10+6; if (j%3==0) cout<<j<<'\t'; } cout<<endl; return 0; }
时间: 2024-10-28 16:16:49
#include<iostream> using namespace std; int main() { int i,j; for (i=0; i<=99; i++) { j=i*10+6; if (j%3==0) cout<<j<<'\t'; } cout<<endl; return 0; }