黑马程序员技术交流社区

标题: 字符出现的次数 [打印本页]

作者: funny    时间: 2015-9-6 23:01
标题: 字符出现的次数
package com.wf.bean;

import javax.swing.text.StyleContext.SmallAttributeSet;

public class B {

        /**
         * 需求:统计一个字符串中大写字母字符,小写字母字符,数字字符出现的次数,其他字符出现的次数。
         */
        public static void main(String[] args) {
                        String s = "ABCDEabcd123456!@#$%^";
                        int big = 0;
                        int small = 0;
                        int count = 0;
                        int other = 0;
                       
                        for (int i = 0; i < s.length(); i++) {
                                char c1 = s.charAt(i);
                                if(c1>='A' && c1<= 'Z'){
                                        big++;
                                }else if (c1>='a' && c1<='z') {
                                        small++;
                                }else if (c1>='0' && c1<='9') {
                                        count++;
                                }else {
                                        other++;
                                }
                        }
                        System.out.println(big);
                        System.out.println(small);
                        System.out.println(count);
                        System.out.println(other);
        }

}

作者: 徐鹏辰    时间: 2015-9-6 23:12
最上面的导包有点多余了





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2