例题:输⼊并统计字符串中各字符出现的次数 1import java.util.Scanner;
字符串转数组char2
3/*
4题⽬:
5键盘输⼊⼀个字符串,并且统计其中各种字符出现的次数。
6种类有:⼤写字母、⼩写字母、数字、其他
7
8思路:
91. 既然⽤到键盘输⼊,肯定是Scanner
102. 键盘输⼊的是字符串,那么:String str = sc.next();
113. 定义四个变量,分别代表四种字符各⾃的出现次数。
124. 需要对字符串⼀个字、⼀个字检查,String-->char[],⽅法就是toCharArray()
135. 遍历char[]字符数组,对当前字符的种类进⾏判断,并且⽤四个变量进⾏++动作。
146. 打印输出四个变量,分别代表四种字符出现次数。
15*/
16public class Demo07StringCount {
17
18public static void main(String[] args) {
19 Scanner sc = new Scanner(System.in);
20 System.out.println("请输⼊⼀个字符串:");
21 String input = sc.next(); // 获取键盘输⼊的⼀个字符串
22
23int countUpper = 0; // ⼤写字母
24int countLower = 0; // ⼩写字母
25int countNumber = 0; // 数字
26int countOther = 0; // 其他字符
27
28char[] charArray = CharArray();
29for (int i = 0; i < charArray.length; i++) {
30char ch = charArray[i]; // 当前单个字符
31if ('A' <= ch && ch <= 'Z') { //byte/short/char这三种类型在运算的时候,都会被⾸先
32 countUpper++; //提升为int类型,然后再计算
33 } else if ('a' <= ch && ch <= 'z') {
34 countLower++;
35 } else if ('0' <= ch && ch <= '9') { //记得数字外加''
36 countNumber++;
37 } else {
38 countOther++;
39 }
40 }
41
42 System.out.println("⼤写字母有:" + countUpper);
43 System.out.println("⼩写字母有:" + countLower);
44 System.out.println("数字有:" + countNumber);
45 System.out.println("其他字符有:" + countOther);
46 }
47
48 }
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论