Run ID:50627
提交时间:2023-07-12 15:00:21
#include<iostream> using namespace std; int main(){ for(int i=100;i<=200;i++){ if(i%3!=0){ cout<<i<<" "; } } }