解题思路:

注意事项:

参考代码:

#include <stdio.h>
#include <stdlib.h>
#define true 1
#define false 0

typedef int Bool;

typedef struct Stu{
 char name[21];
 int score;
 int class_score;
 char if_moni;
 char if_west;
 int sci;
}STU, * PSTU;

void input(int n, PSTU p);
void judge(int n, PSTU p, int * max, int * sub, int * sum_scholoship);
Bool judge1(PSTU p);
Bool judge2(PSTU p);
Bool judge3(PSTU p);
Bool judge4(PSTU p);
Bool judge5(PSTU p);

int main(void){
 int n, max, sub, sum_scoloship;
 max = sum_scoloship = 0;
 scanf("%d", &n);
 PSTU p = (PSTU)malloc(n * sizeof(STU));
 
 input(n, p);
 judge(n, p, &max, &sub, &sum_scoloship);
 printf("%s\n%d\n%d", p[sub].name, max, sum_scoloship);
 return 0;
}

void input(int n, PSTU p){
 int i;
 for(i = 0; i < n; i++){
  scanf("%s %d %d %c %c %d", p[i].name, &p[i].score, &p[i].class_score, &p[i].if_moni, &p[i].if_west, &p[i].sci);
 }
}

void judge(int n, PSTU p, int * max, int * sub, int * sum_scoloship){
 int i, now;
 * sub = 0;
 for(i = 0; i < n; i++){
  now = 0;
  
  if(judge1(&p[i])){
   now += 8000;
  }
  if(judge2(&p[i])){
   now += 4000;
  }
  if(judge3(&p[i])){
   now += 2000;
  }
  if(judge4(&p[i])){
   now += 1000;
  }
  if(judge5(&p[i])){
   now += 850;
  }
  
  *sum_scoloship += now;
  if(now > *max){
   *max = now;
   *sub = i;
  }
 }
}

Bool judge1(PSTU p){
 if(p->score > 80){
  if(p->sci > 0){
   return true;
  }
 }
 return false;
}

Bool judge2(PSTU p){
 if(p->score > 85){
  if(p->class_score > 80){
   return true;
  }
 }
 return false;
}

Bool judge3(PSTU p){
 if(p->score > 90){
  return true;
 }
 return false;
}

Bool judge4(PSTU p){
 if(p->score > 85){
  if(p->if_west == 'Y'){
   return true;
  }
 }
 return false;
}

Bool judge5(PSTU p){
 if(p->class_score > 80){
  if(p->if_moni == 'Y'){
   return true;
  }
 }
 return false;
}


点赞(1)
 

0.0分

1 人评分

C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:

一点编程也不会写的:零基础C语言学练课程

解决困扰你多年的C语言疑难杂症特性的C语言进阶课程

从零到写出一个爬虫的Python编程课程

只会语法写不出代码?手把手带你写100个编程真题的编程百练课程

信息学奥赛或C++选手的 必学C++课程

蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程

手把手讲解近五年真题的蓝桥杯辅导课程

评论列表 共有 0 条评论

暂无评论