不难的一道题,主要还是循环的使用。
#include<iostream> using namespace std; int main() { int n,i; cin>>n; for(i=1;i<=n;i++) { if(n%i==0) cout<<i<<endl; } return 0; }