Run ID:4147
提交时间:2024-08-12 00:35:27
#include <iostream> using namespace std; int main(){ for(int i=100;i<=200;i++){ if(i%2!=0&&i%3!=0&&i%4!=0&&i%5!=0&&i%6!=0&&i%7!=0&&i%8!=0&&i%9!=0){ cout<<i<<endl; } } return 0; }