思路很有意思,但是细节不够完美,外圈x<=1000,那么x>200之后其他的都是800次循环都是白费..所以外圈循环到x<=200就行了,,x必定是1-200,5*x就必定是5-1000,输出倍数的判断也不需要了,判断计次就行了
public class Test
{
public static void main(String[] args)
{
for (int x = 1, count = 0; x <= 200; x++)
{
System.out.print(5 * x + "\t");
count++;
if (count % 3 == 0)
System.out.println();
}
}
} |