输入一个字符串,统计该字符串中分别包含多少个数字,多少个字母,多少个其他字符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了输入一个字符串,统计该字符串中分别包含多少个数字,多少个字母,多少个其他字符相关的知识,希望对你有一定的参考价值。
//使用ASCII表写
import java.util.Scanner;
public class Try {
public static void main(String[] args) {
System.out.println("输入一个字符");
char x=sc.next().charAt(0);
if(x>=48&&x<=57){
System.out.println("这是一个数字");
}
else if(x>=65&&x<=90||x>=97&&x<=122){
System.out.println("这是一个字母");
}
else{
System.out.println("这是一个字符");
}*/
}
}
//不使用ASCII表
import java.util.Scanner;
public class Try {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("输入一个字符");
char x=sc.next().charAt(0);
if(‘a‘<=x&&‘z‘>=x){
System.out.println("这是一个小写字母");
}
else if(‘A‘<=x&&‘Z‘>=x){
System.out.println("这是一个大写字母");
}
else if(‘0‘<=x&&‘9‘>=x){
System.out.println("这是一个数字");
}
else{
System.out.println("这是一个字符");
}
}
}
以上是关于输入一个字符串,统计该字符串中分别包含多少个数字,多少个字母,多少个其他字符的主要内容,如果未能解决你的问题,请参考以下文章