填空题 下面程序段是找出整数的所有因子,请填空。
   scanf("/%d",&x);
   i=1;
   for(; 1;)
   { if(x/%i==0)printf("/%d",i);
     i++:
   }
  • 1、
【正确答案】 1、i<=x    
【答案解析】