1 package sfbc; 2 /** 3 * 显示 n 条记录,每 3 行换一次颜色,即 1 , 2, 3 用红色字体, 4, 5, 4 6 用绿色字体, 7, 8, 9 用红颜色字体。 5 * @author trfizeng 6 *[^/d]{1,} 7 */ 8 public class Turn { 9 public static void main(String[] args) { 10 int n = 10; 11 int r = n%3 == 0 ? n/3 : n/3 + 1; 12 int m = 3; 13 for (int i = 0; i < r; i++) { 14 if (i == r - 1) { 15 m = n % 3; 16 } 17 for (int j = 0; j < m; j++) { 18 if (i % 2 != 0) { 19 System.out.println("红色"); 20 }else { 21 System.out.println("绿色"); 22 } 23 } 24 } 25 } 26 }
绿色
绿色
绿色
红色
红色
红色
绿色
绿色
绿色
红色
时间: 2024-11-20 20:54:34