Run ID:10326

提交时间:2021-04-27 18:14:20

#include <iostream> using namespace std; int main() { int a; for(int i=100; i<=200; i++) { if(i%3==0){ a++; } else { cout<<i<<endl; } } return 0; }