問題描述
某校的慣例是在每學期的期末考試之后發(fā)放獎學金。發(fā)放的獎學金共有五種,獲取的條件各自不同:
院士獎學金装处,每人8000元,期末平均成績高于80分(>80)浸船,并且在本學期內(nèi)發(fā)表1篇或1篇以上論文的學生均可獲得妄迁;
五四獎學金,每人4000元李命,期末平均成績高于85分(>85)登淘,并且班級評議成績高于80分(>80)的學生均可獲得;
成績優(yōu)秀獎封字,每人2000元黔州,期末平均成績高于90分(>90)的學生均可獲得耍鬓;
西部獎學金,每人1000元流妻,期末平均成績高于85分(>85)的西部省份學生均可獲得界斜;
班級貢獻獎,每人850元合冀,班級評議成績高于80分(>80)的學生干部均可獲得各薇;
只要符合條件就可以得獎,每項獎學金的獲獎人數(shù)沒有限制君躺,每名學生也可以同時獲得多項獎學金峭判。例如姚林的期末平均成績是87分,班級評議成績82分棕叫,同時他還是一位學生干部林螃,那么他可以同時獲得五四獎學金和班級貢獻獎,獎金總數(shù)是4850元俺泣。
基本要求
現(xiàn)在給出若干學生的相關(guān)數(shù)據(jù)疗认,請計算哪些同學獲得的獎金總數(shù)最高(假設(shè)總有同學能滿足獲得獎學金的條件)。
輸入數(shù)據(jù)格式格式:
輸入的第一行是一個整數(shù)N(1 <= N <= 100)伏钠,表示學生的總數(shù)横漏。接下來的N行每行是一位學生的數(shù)據(jù),從左向右依次是姓名熟掂,期末平均成績缎浇,班級評議成績,是否是學生干部赴肚,是否是西部省份學生素跺,以及發(fā)表的論文數(shù)。姓名是由大小寫英文字母組成的長度不超過20的字符串(不含空格)誉券;期末平均成績和班級評議成績都是0到100之間的整數(shù)(包括0和100)指厌;是否是學生干部和是否是西部省份學生分別用一個字符表示,Y表示是踊跟,N表示不是踩验;發(fā)表的論文數(shù)是0到10的整數(shù)(包括0和10)。每兩個相鄰數(shù)據(jù)項之間用一個空格分隔琴锭。
輸出數(shù)據(jù)格式:
輸出包括三行晰甚,第一行是獲得最多獎金的學生的姓名,第二行是這名學生獲得的獎金總數(shù)决帖。如果有兩位或兩位以上的學生獲得的獎金最多厕九,輸出他們之中在輸入文件中出現(xiàn)最早的學生的姓名。第三行是這N個學生獲得的獎學金的總數(shù)地回。
輸入
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
Students類
public class Students {
private String name;
private int avgScore;
private int classScore;
private String stuGanbu;
private String westStu;
private int paperCount;
public Students(String name, int avgScore, int classScore, String stuGanbu, String westStu, int paperCount) {
if(name.length()<=20)
{
this.name = name;
}
if(avgScore>=0 && avgScore <=100)
{
this.avgScore = avgScore;
}
if(classScore>=0 && classScore<=100)
{
this.classScore = classScore;
}
if(stuGanbu.equals("Y")||stuGanbu.equals("N"))
{
this.stuGanbu = stuGanbu;
}
if(westStu.equals("Y")||westStu.equals("N"))
{
this.westStu = westStu;
}
if(paperCount>=0 && paperCount <=10)
{
this.paperCount = paperCount;
}
}
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 getStuGanbu() {
return stuGanbu;
}
public void setStuGanbu(String stuGanbu) {
this.stuGanbu = stuGanbu;
}
public String getWestStu() {
return westStu;
}
public void setWestStu(String westStu) {
this.westStu = westStu;
}
public int getPaperCount() {
return paperCount;
}
public void setPaperCount(int paperCount) {
this.paperCount = paperCount;
}
public int yuanshiMoney()
{
int money=0;
if(getAvgScore()>80 && getPaperCount()>=1)
{
money=8000;
}
return money;
}
public int wusiMoney()
{
int money=0;
if(getAvgScore()>85 && getClassScore()>80)
{
money=4000;
}
return money;
}
public int youxiuMoney()
{
int money=0;
if(getAvgScore()>90)
{
money=2000;
}
return money;
}
public int westMoney()
{
int money=0;
if(getAvgScore()>85 && getWestStu().equals("Y"))
{
money=1000;
}
return money;
}
public int classMoney()
{
int money=0;
if(getClassScore()>80 && getStuGanbu().equals("Y"))
{
money=850;
}
return money;
}
}
主函數(shù)
package com.company;
import java.util.*;
public class Choice {
public static void main(String[] args) {
// write your code here
Scanner scanner = new Scanner(System.in);
System.out.println("請輸入");
int num = scanner.nextInt();
if (num >= 0 && num <= 100) {
List<Students> listStudents = new ArrayList<>();
for(int i = 0;i < num;i++)
{
String name = scanner.next();
int avgScore = scanner.nextInt();
int classScore = scanner.nextInt();
String stuGanbu = scanner.next();
String westStu = scanner.next();
int paperCount = scanner.nextInt();
Students students = new Students( name, avgScore, classScore,stuGanbu, westStu,paperCount);
listStudents.add(students);
}
int maxMoney = 0;
String stuName = "";
int countMoney = 0;
for(Students students:listStudents)
{
int yuanshi = students.yuanshiMoney();
int wusi = students.wusiMoney();
int youxiu = students.youxiuMoney();
int west = students.westMoney();
int classMoney = students.classMoney();
int money = yuanshi+wusi+youxiu+west+classMoney;
countMoney+=money;
if(maxMoney < money)
{
maxMoney = money;
stuName = students.getName();
}
}
System.out.println(stuName);
System.out.println(maxMoney);
System.out.println(countMoney);
}
}
}