黑马程序员技术交流社区

标题: 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。 [打印本页]

作者: 悟能    时间: 2015-8-3 11:53
标题: 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
import javax.swing.JOptionPane;

public class Count {
        public static void main(String []args){
                int ch=0;
                int nu=0;
                int blank=0;
                int ot=0;
                String st = JOptionPane.showInputDialog("请输入字符串");
                for(int i=0;i<st.length();i++){
                        char n=st.charAt(i);
                        if(n>='0'&&n<='9')nu++;
                        else if((n>='a'&n<='z')||(n>='A'&n<='Z'))ch++;
                        else if(n==' ')blank++;
                        else ot++;               
                }
                JOptionPane.showMessageDialog(null, "字母的个数为:"+ch+"\n数字的个数为:"+nu+"\n空格的个数为:"+blank+"\n其他符号的个数为:"+ot);
        }

}




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