为什么运行结果 每6个之间距离那么大???
/*
编写程序,采用适当的循环和流程控制语句实现下述功能:
打印输出0-200能被7整除但不能被4整除的所有整数,要求每行显示6个数据。
*/
class DemoFor
{
public static void main(String[] args)
{
int count = 0;
for (int x=1; x<=200; x++)
{
if (x%7==0 && x%4!=0)
{
System.out.print(x+" ");
count++;
}
if (count%6==0)
{
System.out.println();
}
}
}
}
|
|