[HDU 1202] The calculation of GPA

[HDU 1202] The calculation of GPA

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1202

题目不难,注意一些细节问题:

  • 浮点数初始化或者进行比较的时候默认加上个 .0
  • 认真分析题目中的各项数据应该用什么类型的
  • 在测试用例不确定的情况下,还是用while来无限次输入吧
/*
 * 用while循环
 * 学分和成绩数据是浮点数
 */

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        while (scanner.hasNext()) {
            int n = scanner.nextInt();
            double x,y;
            double suma = 0.0,sumb = 0.0;
            while (n-- > 0) {
                x = scanner.nextDouble();
                y = scanner.nextDouble();
                if (y == -1.0)
                    continue;
                suma += x;
                sumb = sumb + x * dian(y);
            }
            if (suma == 0.0) {
                System.out.println(-1);
            } else {
                double ans = sumb / suma;
                System.out.printf("%.2f", ans);
                System.out.println();
            }
        }
    }

    public static int dian(double y) {
        if (y >= 90.0)
            return 4;
        else if (y >= 80.0)
            return 3;
        else if (y >= 70.0)
            return 2;
        else if (y >= 60.0)
            return 1;
        else
            return 0;
    }
}
posted @ 2019-03-17 09:56 Youpeng 阅读( ...) 评论( ...) 编辑 收藏
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值