A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© ouyzm 中级黑马   /  2016-10-18 00:41  /  881 人查看  /  1 人回复  /   1 人收藏 转载请遵从CC协议 禁止商业使用本文

package Test_01;

import java.util.Scanner;

public class 统计字符串 {

        /**
         * @param args
         */
        public static void main(String[] args) {
                Scanner sc = new Scanner(System.in);
                System.err.println("请输入一个字符串");
                String s = sc.nextLine();
                int x = 0;
                int y = 0;
                int z = 0 ;
                int w = 0;
                char[] ch = s.toCharArray();
                for (int i = 0; i < ch.length; i++) {
                        if('0'<=ch[i]&&ch[i]<='9'){
                                x++;
                        }else if (('a'<=ch[i]&&ch[i]<='z')||('A'<=ch[i]&&ch[i]<='Z')) {
                                y++;
                        }else if (ch[i]==' ') {
                                z++;
                        }else {
                                w++;
                        }
                }
                System.out.println("字母出现次数为"+y+"数字出现次数为"+x+"空格出现次数为"+z+"其他字符出现次数为"+w);
        }

}


1 个回复

正序浏览
类名别用中文
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马