이 기사에서는 알파벳이 모음인지 자음인지 확인하는 방법을 이해합니다. 'a' 'e' 'i' 'o' 'u'가 포함된 알파벳을 모음이라고 하고 다른 모든 알파벳을 자음이라고 합니다.
아래는 동일한 데모입니다 -
입력
입력이 -
라고 가정합니다.Enter the character : i
출력
원하는 출력은 -
The character : i is a vowel
알고리즘
Step 1 - START Step 2 - Declare a char value namely my_input. Step 3 - Read the required values from the user/ define the values Step 4 - Using an if condition, check if the input is equal to 'a' 'e' 'I' 'o' 'u' values. If yes, its an vowel. Else it's a consonant. Step 5 - Display the result Step 6 - Stop
예시 1
여기에서 입력은 프롬프트에 따라 사용자가 입력하고 있습니다. 코딩 기반 도구에서 이 예제를 라이브로 사용해 볼 수 있습니다. .
import java.util.Scanner; public class VowelAndConsonant { public static void main(String[] args) { char my_input; System.out.println("Required packages have been imported"); Scanner my_scanner = new Scanner(System.in); System.out.println("A reader object has been defined "); System.out.print("Enter the character : "); my_input = my_scanner.next().charAt(0); if(my_input == 'a' || my_input == 'e' || my_input == 'i' || my_input == 'o' || my_input == 'u' ) System.out.println("The character : " +my_input + " is a vowel"); else System.out.println("The character : " +my_input + " is a consonant"); } }
출력
Required packages have been imported A reader object has been defined Enter the character : i The character : i is a vowel
예시 2
여기서 정수는 이전에 정의되었으며 그 값은 콘솔에 액세스되어 표시됩니다.
public class VowelAndConsonant { public static void main(String[] args) { char my_input = 'i'; System.out.println("The character is defined as :" +my_input); if(my_input == 'a' || my_input == 'e' || my_input == 'i' || my_input == 'o' || my_input == 'u' ) System.out.println("The character : " +my_input + " is a vowel"); else System.out.println("The character : " +my_input + " is a consonant"); } }
출력
The character is defined as :i The character : i is a vowel