提交时间:2024-11-22 14:35:20

运行 ID: 57292

#include<iostream> using namespace std; int main() { int a; cin>>a; for(int i=1;i<=a;i++){ if(a%i==0){ if(i>1){ int x; for(int j=1;j<i;j++) { if(i%j==0){ x=j; } } if(x==1){ cout<<i<<" "; } } } } return 0; }