Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
问题指出 - “编写一个 for 循环,将字符循环计数器从 'c' 迭代到 'h',包括两个字符,每次使用 System.out.print() 打印字符循环计数器。外部(以及之后) 循环,以空 System.out.println() 终止该行。”
int x =1; for (char y = 'c'; y>=2 && y<=7; y++) { System.out.println(y); x++; } System.out.println();
字符可以直接与字符进行比较。字符串不是这种情况。
for(char y = 'c'; y <= 'h'; y++){ System.out.print(y); } System.out.println();
由于说明,我将 println 更改为 print :
每次使用 System.out.print() 打印字符循环计数器