2.奖学金发放(4分)

2
奖学金发放(4分)

题目内容:

某校的惯例是在每学期的期末考试之后发放奖学金。发放的奖学金共有五种,每项奖学金获取的条件分别如下:

1) 院士奖学金:期末平均成绩高于80分(>80),并且在本学期内发表1篇或1篇以上论文的学生每人均可获得8000元;

2) 五四奖学金:期末平均成绩高于85分(>85),并且班级评议成绩高于80分(>80)的学生每人均可获得4000元;

3) 成绩优秀奖:期末平均成绩高于90分(>90)的学生每人均可获得2000元;

4) 西部奖学金:期末平均成绩高于85分(>85)的西部省份学生每人均可获得1000元;

5) 班级贡献奖:班级评议成绩高于80分(>80)的学生干部每人均可获得850元;

只要符合上述条件就可获得相应的奖项,每项奖学金的获奖人数没有限制,每名学生也可以同时获得多项奖学金。例如姚明的期末平均成绩是87分,班级评议成绩82分,同时他还是一位学生干部,那么他可以同时获得五四奖学金和班级贡献奖,奖金总数是4850元。

现在给出若干学生的相关数据(假设总有同学能满足获得奖学金的条件),请编程计算哪些同学获得的奖金总数最高。

结构体类型定义如下:

typedef struct winners

{

    char name[20];

    int finalScore;

    int classScore;

    char work;

    char west;

    int paper;

    int scholarship;

} WIN;

函数原型:void Addup(WIN stu[], int n);

函数原型:int FindMax(WIN student[], int n);

程序运行结果示例:

Input n:4↙

Input name:YaoMing↙

Input final score:87↙

Input class score:82↙

Class cadre or not?(Y/N):Y↙

Students from the West or not?(Y/N):N↙

Input the number of published papers:0↙

name:YaoMing,scholarship:4850

Input name:ChenRuiyi↙

Input final score:88↙

Input class score:78↙

Class cadre or not?(Y/N):N↙

Students from the West or not?(Y/N):Y↙

Input the number of published papers:1↙

name:ChenRuiyi,scholarship:9000

Input name:LiXin↙

Input final score:92↙

Input class score:88↙

Class cadre or not?(Y/N):N↙

Students from the West or not?(Y/N):N↙

Input the number of published papers:0↙

name:LiXin,scholarship:6000

Input name:ZhangQin↙

Input final score:83↙

Input class score:87↙

Class cadre or not?(Y/N):Y↙

Students from the West or not?(Y/N):N↙

Input the number of published papers:1↙

name:ZhangQin,scholarship:8850

ChenRuiyi get the highest scholarship 9000

输入学生人数提示:"Input n:"

输入学生姓名提示:"Input name:"

输入学生期末平均成绩提示:"Input final score:"

输入学生班级评议成绩提示:"Input class score:"

输入是否为学生干部提示:"Class cadre or not?(Y/N):"

输入是否为西部学生提示:"Students from the West or not?(Y/N):"

输入发表文章数量提示:"Input the number of published papers:"

输入格式:

    输入学生人数:"%d"

    输入学生姓名:"%s"

    输入学生成绩:"%d"

    输入是否为学生干部:" %c" (注意:%c前面有一个空格)

    输入是否为西部学生:" %c" (注意:%c前面有一个空格)

    输入发表文章数量: "%d"

输出格式:

     输出学生获得的奖学金:  "name:%s,scholarship:%d\n"

     输出获得奖学金总数最高的学生:"%s get the highest scholarship %d\n"

为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。

时间限制:500ms内存限制:32000kb
#include<stdio.h>
typedef struct winners
{
	char name[20];
	int finalScore;
	int classScore;
	char work;
	char west;
	int paper;
	int scholarship;
} WIN;

main(){
int i,count=0,n,s;

  WIN stu[100];

 printf("Input n:");
 scanf("%d",&n);
 s = n;
 while (n--)
 {
	 stu[count].scholarship = 0;
	 printf("Input name:");
	 scanf("%s", &stu[count].name);
	 printf("Input final score:");
	 scanf("%d", &stu[count].finalScore);
	 printf("Input class score:");
	 scanf("%d", &stu[count].classScore);  
	 printf("Class cadre or not?(Y/N):");
	 scanf(" %c", &stu[count].work);
	 printf("Students from the West or not?(Y/N):");
	 scanf(" %c", &stu[count].west); 
	 printf("Input the number of published papers:");
	 scanf("%d", &stu[count].paper);
	 if (stu[count].finalScore > 90)
	 {
		 stu[count].scholarship += 2000;
	 }
	
	  if (stu[count].finalScore > 85&& stu[count].classScore>80)
	 {
		 stu[count].scholarship += 4000;
	 }
	
	  if(stu[count].classScore>80)
	 {
		 if (stu[count].work != 78)
		 {
			 stu[count].scholarship += 850;
		 }
	 }
	 
	  if (stu[count].finalScore>85)
	 {
		 if (stu[count].west != 78) {
			 stu[count].scholarship += 1000;
		 }
	 }
	
	  if (stu[count].finalScore > 80 && stu[count].paper)
	 {
		 stu[count].scholarship += 8000;
	 } 
	 printf("name:%s,scholarship:%d\n", stu[count].name, stu[count].scholarship);
	 count++;
	
}
 
 int max;
 count = 0;
 max = stu[0].scholarship;
 for (i = 0; i < s; i++)
 {
	 if (max < stu[i].scholarship)
	 {
		 max = stu[i].scholarship;
		 count = i;
		 
	 }
 }
 printf("%s get the highest scholarship %d\n", stu[count].name, max);

}

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
谁拿了最多奖学金 • 某校的惯例是在每学期的期末考试之后发放奖学金发放奖学金共有五种,获取的条件各自不同: • 1) 院士奖学金,每人8000元,期末平均成绩高于80分( >80),并且在本学期内发表1篇或1篇以上论文的学生均可获得; • 2) 五四奖学金,每人4000元,期末平均成绩高于85分( >85),并且班级评议成绩高于80分(>80)的学生均可获得; • 3) 成绩优秀奖,每人2000元,期末平均成绩高于90分( >90)的学生均可获得; 4) 西部奖学金,每人1000元,期末平均成绩高于85分( >85)的西部省份学生均可获得;5) 班级贡献奖,每人850元,班级评议成绩高于80分(>80)的学生干部均可获得; • 只要符合条件就可以得奖,每项奖学金的获奖人数没有限制,每名学生也可以同时获得多项奖学金。 • 例如姚林的期末平均成绩是87分,班级评议成绩82分,同时他还是一位学生干部,那么他可以同时获得五四奖学金 和班级贡献奖,奖金总数是4850元。现在给出若干学生的相关数据,请计算哪些同学获得的奖金总数最高(假设总 有同学能满足获得奖学金的条件)。 Input 输入的第一行是一个整数N(1 <= N <= 100),表示学生的总数。 • 接下来的N行每行是一位学生的数据,从左向右依次是姓名,期末平均成绩,班级评议成绩,是否是学生干部,是 否是西部省份学生,以及发表的论文数。姓名是由大小写 英文字母组成的长度不超过20的字符串(不含空格);期末平均成绩和班级评议成绩都是0到100之间的整数(包括0和100);是否是学生干部和是否是西部省份学生分别用一个字符表示,Y表示是,N表示不是;发表的论文数是0 到10的整数(包括0和10)。每两个相邻数据项之间用一个空格分隔。 Output 输出包括三行,第一行是获得最多奖金的学生的姓名,第二行是这名学生获得的奖金总数。如果有两位或两位以上 的学生获得的奖金最多,输出他们之中在输入文件中出现 最早的学生的姓名。第三行是这N个学生获得的奖学金的总数。 • • Sample Input Sample Output 4 YaoLin 87 82 Y N 0 ChenRuiyi ChenRuiyi 88 78 N Y 1 9000 LiXin 92 88 N N 0 28700 ZhangQin 83 87 Y N 1

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值