丁昭臣 • 1个月前
#include<iostream> using namespace std; int main() { int n=100; for(int i=1;i<=n;i++) { if(i%3==0){ cout<<i<<endl; } } return 0; }
评论: