下面程序段是找出整数的所有因子。请填空______.s

下面程序段是找出整数的所有因子。请填空______.

scanf("%d",&x);
i=1;
for( ;______; )
{
	if(x%i==0)
	printf("%3d",i);
	i++;
}
答案
第1空:i<=x

题目信息

题号:7275
题型:填空题
难度:普通