题目简单,注意输出格式即可。
#include<stdio.h> int main() { int N,i=1; scanf("%d",&N); while (i<=N) { if (N%i==0) printf("%d\n",i); i=i+1; } return 0; }