编写一个程序,其功能为:从键盘输入一行字符,分别统计其中字母、字符、空格以及其他字符的个数
编写一个程序,其功能为:从键盘输入一行字符,分别统计其中字母、字符、空格以及其他字符的个数,怎么编的阿...
编写一个程序,其功能为:从键盘输入一行字符,分别统计其中字母、字符、空格以及其他字符的个数,怎么编的阿
展开
展开全部
我是用java编的你看一下:
import java.io.BufferedReader;
import java.util.Scanner;
//编写一个程序,其功能为:从键盘输入一行字符,分别统计其中字母、字符、空格以及其他字符的个数
public class Test{
public static void main(String[] args){
int letter = 0;//记录字母的个数
int chars = 0;//记录字符的个数
int space = 0;//记录空格的个数
int others = 0;//记录其他字符的个数
Scanner in = new Scanner(System.in);
String str = null;
if(in.hasNextLine()){
str = in.nextLine();
}
else{
System.out.println("Error");
System.exit(-1);
}
char[] array = str.toCharArray();
for(char i:array){
if(Character.isLetter(i)) {letter++;}
if(Character.isWhitespace(i)) {space++;}
if(Character.isDefined(i)) {chars++;}
else {others++;}
}
System.out.println("字母的个数为:"+letter);
System.out.println("空格的个数为:"+space);
System.out.println("字符的个数为:"+chars);
System.out.println("其他个数为: "+others);
}
}
import java.io.BufferedReader;
import java.util.Scanner;
//编写一个程序,其功能为:从键盘输入一行字符,分别统计其中字母、字符、空格以及其他字符的个数
public class Test{
public static void main(String[] args){
int letter = 0;//记录字母的个数
int chars = 0;//记录字符的个数
int space = 0;//记录空格的个数
int others = 0;//记录其他字符的个数
Scanner in = new Scanner(System.in);
String str = null;
if(in.hasNextLine()){
str = in.nextLine();
}
else{
System.out.println("Error");
System.exit(-1);
}
char[] array = str.toCharArray();
for(char i:array){
if(Character.isLetter(i)) {letter++;}
if(Character.isWhitespace(i)) {space++;}
if(Character.isDefined(i)) {chars++;}
else {others++;}
}
System.out.println("字母的个数为:"+letter);
System.out.println("空格的个数为:"+space);
System.out.println("字符的个数为:"+chars);
System.out.println("其他个数为: "+others);
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询