Java 程序使用循环显示字母(A 到 Z)
在本文中,我们将了解如何使用 Java 打印从 A 到 Z 或者从 a 到 z 的字母。这可以通过一个简单的 for 循环 来完成。
以下对其进行演示 -
输入
假设我们的输入是 -
A to Z
输出
所需的输出将是 -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
算法
Step1- Start Step 2- Declare a character: my_temp Step 3- Run a for loop from A to Z and print the values using the increment operator Step 4- Display the result Step 5- Stop
示例 1
这里,整数已经预先定义,其值在控制台中访问和显示。
public class Alphabets { public static void main(String[] args) { char my_temp; System.out.print("Displaying Alphabets from A to Z \n"); for(my_temp= 'A'; my_temp <= 'Z'; ++ my_temp) System.out.print(my_temp+ " "); } }
输出
Displaying Alphabets from A to Z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
示例 2
这里,整数已经预先定义,其值在控制台中访问和显示。
public class Alphabets { public static void main(String[] args) { char my_temp; System.out.print("Displaying Alphabets from a to z \n"); for(my_temp = 'a'; my_temp <= 'z'; ++my_temp) System.out.print(my_temp + " "); } }
输出
Displaying Alphabets from a to z a b c d e f g h i j k l m n o p q r s t u v w x y z
广告