java基础编程练习之谁拿了最多奖学金

问题描述

某校的惯例是在每学期的期末考试之后发放奖学金。发放的奖学金共有五种,获取的条件各自不同:

院士奖学金,每人8000元,期末平均成绩高于80分(>80),并且在本学期内发表1篇或1篇以上论文的学生均可获得;
五四奖学金,每人4000元,期末平均成绩高于85分(>85),并且班级评议成绩高于80分(>80)的学生均可获得;
成绩优秀奖,每人2000元,期末平均成绩高于90分(>90)的学生均可获得;
西部奖学金,每人1000元,期末平均成绩高于85分(>85)的西部省份学生均可获得;
班级贡献奖,每人850元,班级评议成绩高于80分(>80)的学生干部均可获得;
只要符合条件就可以得奖,每项奖学金的获奖人数没有限制,每名学生也可以同时获得多项奖学金。例如姚林的期末平均成绩是87分,班级评议成绩82分,同时他还是一位学生干部,那么他可以同时获得五四奖学金和班级贡献奖,奖金总数是4850元。
基本要求

现在给出若干学生的相关数据,请计算哪些同学获得的奖金总数最高(假设总有同学能满足获得奖学金的条件)。
输入数据格式格式:
输入的第一行是一个整数N(1 <= N <= 100),表示学生的总数。接下来的N行每行是一位学生的数据,从左向右依次是姓名,期末平均成绩,班级评议成绩,是否是学生干部,是否是西部省份学生,以及发表的论文数。姓名是由大小写英文字母组成的长度不超过20的字符串(不含空格);期末平均成绩和班级评议成绩都是0到100之间的整数(包括0和100);是否是学生干部和是否是西部省份学生分别用一个字符表示,Y表示是,N表示不是;发表的论文数是0到10的整数(包括0和10)。每两个相邻数据项之间用一个空格分隔。
输出数据格式:
输出包括三行,第一行是获得最多奖金的学生的姓名,第二行是这名学生获得的奖金总数。如果有两位或两位以上的学生获得的奖金最多,输出他们之中在输入文件中出现最早的学生的姓名。第三行是这N个学生获得的奖学金的总数。

输入

4
YaoLin 87 82 Y N 0
ChenRuiyi 88 78 N Y 1
LiXin 92 88 N N 0
ZhangQin 83 87 Y N 1

输出

ChenRuiyi
9000
28700

主函数
package com.company;

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {

    public static void main(String[] args) {
        try {
            InputStreamReader inputStream = new InputStreamReader(System.in);
            BufferedReader buffer = new BufferedReader(inputStream);
            String input = buffer.readLine();
            int studentNumber = Integer.parseInt(input);
            String maxMoneyStudentName = "";
            int maxStudentMoney = 0;
            int totalStudentMoney = 0;
            for (int i = 1; i <= studentNumber; i++) {

                String[] studentInfo = buffer.readLine().split(" ");

                Student student = new Student(studentInfo[0], Integer.parseInt(studentInfo[1]), Integer.parseInt(studentInfo[2]), studentInfo[3], studentInfo[4], Integer.parseInt(studentInfo[5]));
                int studentMoney = student.calcMoney();
                if (studentMoney > maxStudentMoney) {
                    maxMoneyStudentName = student.getName();
                    maxStudentMoney = studentMoney;
                }
                totalStudentMoney += studentMoney;
            }
            System.out.println(maxMoneyStudentName);
            System.out.println(maxStudentMoney);
            System.out.println(totalStudentMoney);
        } catch (Exception ex) {
            System.out.println(ex.getMessage());
        }

    }


    }

学生类

package com.company;

public class Student {

    private String name;
    private int avgScore;
    private int classScore;
    private  String isGanbu;
    private String isXibu;
    private int thesisNumber;

    public Student(String name, int avgScore, int classScore, String isGanbu, String isXibu, int thesisNumber)
    {
        this.name = name;
        this.avgScore = avgScore;
        this.classScore = classScore;
        this.isGanbu = isGanbu;
        this.isXibu = isXibu;
        this.thesisNumber = thesisNumber;
    }



    public String getName()
    {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAvgScore() {
        return avgScore;
    }

    public void setAvgScore(int avgScore) {
        this.avgScore = avgScore;
    }

    public int getClassScore() {
        return classScore;
    }

    public void setClassScore(int classScore) {
        this.classScore = classScore;
    }

    public String getIsGanbu() {
        return isGanbu;
    }

    public void setIsGanbu(String isGanbu) {
        this.isGanbu = isGanbu;
    }

    public String getIsXibu() {
        return isXibu;
    }

    public void setIsXibu(String isXibu) {
        this.isXibu = isXibu;
    }

    public int getThesisNumber() {
        return thesisNumber;
    }

    public void setThesisNumber(int thesisNumber) {
        this.thesisNumber = thesisNumber;
    }

    public int calcMoney()
    {
        int money = 0;
        if (avgScore >80  && thesisNumber >= 1) {
            money += 8000;
        }
        if (avgScore > 85 && classScore > 80) {
            money += 4000;
        }
        if (avgScore > 90) {
            money += 2000;
        }
        if (avgScore > 85 && isXibu.equals("Y")) {
            money += 1000;
        }
        if (classScore > 80 && isGanbu.equals("Y")) {
            money += 850;
        }
        return money;
    }

    }


你可能感兴趣的:(java基础编程练习之谁拿了最多奖学金)