java小程序
Posted yanjiemao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java小程序相关的知识,希望对你有一定的参考价值。
【程序7】
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
package case50;
import java.util.*;
/**
* 题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
*
* @author 眼睫毛能扫地
*
*/
public class Case07 {
public static void main(String[] args) {
int character = 0, blank = 0, digital = 0, other = 0;
char ch[] = null;
Scanner input = new Scanner(System.in);
System.out.println("请输入一行字符");
String s = input.nextLine();
ch = s.toCharArray();
input.close();
for (int i = 0; i < ch.length; i++) {
if (ch[i] >= '0' && ch[i] <= '9') {
digital++;
} else if ((ch[i] >= 'a' && ch[i] <= 'z') || (ch[i] >= 'A' && ch[i] <= 'Z')) {
character++;
} else if (ch[i] == ' ') {
blank++;
} else {
other++;
}
}
System.out.println("中英文子母个数:" + character);
System.out.println("数字个数:" + digital);
System.out.println("空格个数:" + blank);
System.out.println("其他字符个数:" + other);
}
}
以上是关于java小程序的主要内容,如果未能解决你的问题,请参考以下文章