Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

루프를 사용하여 알파벳(A에서 Z까지)을 표시하는 Java 프로그램

<시간/>

이 기사에서는 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