用Java编写一个程序,按照倒序输出26个大写英文字母
问题描述:
用Java编写一个程序,按照倒序输出26个大写英文字母
答
public class PrintUpperChar {
public static void main(String[] args) {
for (char M = 'Z'; M >= 'A'; M--) {
System.out.print(M);
}
}
}