Java 菜单驱动程序,用于检查字符是字符串、数字还是特殊字符
在本文中,我们将看到一个菜单驱动程序,通过Java编程语言检查输入的字符是数字、字符串还是特殊字符。我们将使用switch case来实现应用程序。
展示一些示例
实例-1
Suppose the entered character is ‘a’ then the output should be “Entered character is a String”.
实例-2
Suppose the entered character is ‘1’ then the output should be “Entered character is a number”.
实例-3
Suppose the entered character is ‘$’ then the output should be “Entered character is a Special character”.
语法
在Java中,我们使用isLetter、isDigit或isWhitespace函数来检查字符是否为字符串、数字或特殊字符。使用isLetter函数检查字符串,使用isDigit函数检查数字,使用isLetter、isDigit和isWhitespace函数的组合来检查特殊字符。
以下是String函数的语法:
Character.isLetter(ob1)
以下是数字函数的语法
Character.isDigit(ob1)
以下是String函数的语法。
(!Character.isDigit(ob1)&& !Character.isLetter(ob1)&& !Character.isWhitespace(ob1))
步骤
步骤 1 - 要求用户输入所需字符。
步骤 2 - 显示菜单。
步骤 3 - 要求用户输入选择。
步骤 4 - 使用 switch case 跳转到选择并执行操作。
步骤 5 - 打印结果。
让我们看看这个程序以更清楚地理解。
示例
import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner( System.in );
System.out.println("Enter a character to check if it's a Number, String or a Special character");
char ob1 = sc.next().charAt(0);
System.out.println("Now choose the operation you want to perform from the menu given below. ");
mainLoop: while (true) {
Scanner inn = new Scanner( System.in );
System.out.println("\n***Menu***");
System.out.println("1. Check if a character is number");
System.out.println("2. Check if a character is String");
System.out.println("3. Check if a character is Special character");
System.out.println("4. Terminate the program");
System.out.println("Enter action number (1-4): ");
int command;
if ( inn.hasNextInt() ) {
command = inn.nextInt();
inn.nextLine();
}
else {
System.out.println("\nILLEGAL RESPONSE. YOU MUST ENTER A NUMBER.");
inn.nextLine();
continue;
}
switch(command) {
case 1:
if (Character.isDigit(ob1)) {
System.out.println("Character is a number!");
} else {
System.out.println("Character is not a number!");
}
break;
case 2:
if (Character.isLetter(ob1)) {
System.out.println("Character is a String!");
} else {
System.out.println("Character is not a String!");
}
break;
case 3:
if (!Character.isDigit(ob1)
&& !Character.isLetter(ob1)
&& !Character.isWhitespace(ob1)) {
System.out.println("Character is a Special Character!");
} else {
System.out.println("Character is not a Special Character!");
}
break;
case 4:
System.out.println("Program terminated");
break mainLoop;
default:
System.out.println("Wrong choice!!");
}
}
}
}
输出
Enter a character to check if it's a Number, String or a Special character
t
Now choose the operation you want to perform from the menu given below.
***Menu***
1. Check if a character is number
2. Check if a character is String
3. Check if a character is Special character
4. Terminate the program
Enter action number (1-4):
1
Character is not a number!
***Menu***
1. Check if a character is number
2. Check if a character is String
3. Check if a character is Special character
4. Terminate the program
Enter action number (1-4):
3
Character is not a Special Character!
***Menu***
1. Check if a character is number
2. Check if a character is String
3. Check if a character is Special character
4. Terminate the program
Enter action number (1-4):
2
Character is a String!
***Menu***
1. Check if a character is number
2. Check if a character is String
3. Check if a character is Special character
4. Terminate the program
Enter action number (1-4):
$
ILLEGAL RESPONSE. YOU MUST ENTER A NUMBER.
***Menu***
1. Check if a character is number
2. Check if a character is String
3. Check if a character is Special character
4. Terminate the program
Enter action number (1-4):
1
Character is not a number!
***Menu***
1. Check if a character is number
2. Check if a character is String
3. Check if a character is Special character
4. Terminate the program
Enter action number (1-4):
3
Character is not a Special Character!
***Menu***
1. Check if a character is number
2. Check if a character is String
3. Check if a character is Special character
4. Terminate the program
Enter action number (1-4):
2
Character is a String!
***Menu***
1. Check if a character is number
2. Check if a character is String
3. Check if a character is Special character
4. Terminate the program
Enter action number (1-4):
4
Program terminated
在这篇文章中,我们通过使用菜单驱动的方法探讨了如何在Java中检查一个字符是否是字符串、数字或特殊字符。