题解 | #小乐乐算多少人被请家长#

小乐乐算多少人被请家长

http://www.nowcoder.com/practice/1654083e09d2432aa24b151d36309155

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        while(scan.hasNextInt()) {
            int n = scan.nextInt();
            int x = 0;//统计不及格的人数
            for(int i = 1; i <= n; i++) {
                int c = scan.nextInt();//语文
                int m = scan.nextInt();//数学
                int e = scan.nextInt();//英语
                int total = c + m + e;
                if(total / 3 < 60) {
                    x++;
                }
            }
            System.out.println(x);
        }
    }
}
Java基础练习题 文章被收录于专栏

都是一些基础的语法题目,每天可以刷几道。

全部评论

相关推荐

过往烟沉:我说什么来着,java就业面就是广!
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务