使用for循环输出字母表,用什么方法可以使每输出5个字母换一行?
for (int i = 0; i < 26; i++) { print((char)(i + 'A')); print("\t"); if (i % 5 == 0) print("\n"); }