如果是C语言,可以直接使用格式化输出中的%c
但是Java没有,所以可以1、强制类型转化;2、for循环递增变量中直接定义为char类型
方法一:强制类型转化
//2024.06.29
public class Homework07{public static void main(String[] args) {for(int i = 0; i < 26; i++){System.out.print((char)('a'+i) + " ");}System.out.println();for (int i = 0; i < 26; i ++) {System.out.print((char)('Z'-i) + " ");}System.out.println();}
}
方法二:for循环递增变量中直接定义为char类型
//2024.06.29
public class Homework07{public static void main(String[] args) {for (char c = 'a'; c <= 'z'; c++) {System.out.print(c + " ");}System.out.println();for (char c = 'Z'; c >= 'A'; c--) {System.out.print(c + " ");}System.out.println();}
}