Run ID:118402

提交时间:2025-04-29 19:12:36

#include<bits/stdc++.h> using namespace std; int main(){ int a[10001]={}; for(int i=100;i<=200;i++){ for(int j=1;j<=i;j++){ if(i%j==0){ a[i]++; } } } for(int i=100;i<=200;i++){ if(a[i]==2){ cout<<i<<endl; } } return 0; }