溫馨提示×

Java中怎么打印從A到Z字母

小億
202
2024-04-28 12:54:41
欄目: 編程語言

在Java中,可以使用循環(huán)來打印從A到Z的字母。代碼示例如下:

public class PrintAlphabets {
    public static void main(String[] args) {
        for(char c = 'A'; c <= 'Z'; c++) {
            System.out.print(c + " ");
        }
    }
}

運行上面的代碼,就會輸出從A到Z的字母。

1