题解 | #判断各类型字符个数#

判断各类型字符个数

http://www.nowcoder.com/practice/4ccc155e474e4d4c83cfde116dcf2218


public class Main {
    public static void main(String[] args) {
        int numbers = 0;
        int words = 0;
        int space = 0;
        int other = 0;
        Scanner scanner = new Scanner(System.in);
        String str = scanner.nextLine();
        int i;
        char ch;
        
        for(i=0;i<=str.length()-1;i++){
            ch=str.charAt(i);
            if(ch>='0'&&ch<='9'){
                numbers+=1;
            }
            else if(ch>='a'&&ch<='z'||ch>='A'&&ch<='Z'){
                words+=1;
            }
            else if(ch==' '){
                space+=1;
            }
            else{
                other+=1;
            }
        }
        //write your code here......
        System.out.println("英文字母"+words+"数字"+numbers+"空格"+space+"其他"+other);
    }
}
全部评论

相关推荐

Java大菜狗:纯纯招黑奴,一天还不到两百那么多要求,还不迟到早退,以为啥啊,给一点工资做一堆活,还以不拖欠员工工资为荣,这是什么值得骄傲的事情吗,纯纯***公司
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务