• 2021-04-14
    下面程序段是找出整数的所有因子,请分析程序填空。 scanf("%d",&x); for (i=1; ; i++) if (x%i==0) printf("%3d",i);