for循环,判断输出,对10取余,等于0换行,对5取余,等于零则不输出。
for(int i=1;i<=100;i++){ if(i%10==0)System.out.println(); System.out.print(i+" "); } 采纳哦