题解 | #统计大写字母个数#

统计大写字母个数

http://www.nowcoder.com/practice/434414efe5ea48e5b06ebf2b35434a9c

import java.util.*;

public class Main{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        int sum = 0;
        while(sc.hasNext()){
            String str = sc.nextLine();
            for(int i = 0;i<str.length();i++){
            //str.charAt(i)  i对应字符串下标
                char ch = str.charAt(i);
                if(ch >= 'A' && ch <= 'Z'){
                sum++;
                }
            }
        }
        System.out.println(sum);
    }
}
全部评论

相关推荐

有工作后先养猫:太好了,是超时空战警,我们有救了😋
点赞 评论 收藏
分享
10-24 13:36
门头沟学院 Java
Zzzzoooo:更新:今天下午有hr联系我去不去客户端,拒了
点赞 评论 收藏
分享
2 收藏 评论
分享
牛客网
牛客企业服务