P5742 深基7.例11评等级

Posted Kunkun只喝怡宝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P5742 深基7.例11评等级相关的知识,希望对你有一定的参考价值。

在这里插入图片描述

代码

#include<bits/stdc++.h>

using namespace std;

struct Student{
	int ID;
	int score_1;
	int score_2;
	float total;
};
int main(){
	int n,i;
	Student stu;
	cin>>n;
	for(i=0;i<n;i++){
		cin>>stu.ID>>stu.score_1>>stu.score_2;
		stu.total=stu.score_1*0.7+stu.score_2*0.3;
		if((stu.score_1+stu.score_2)>140&&stu.total>=80)
			cout<<"Excellent"<<endl;
		else cout<<"Not excellent"<<endl;
	}
	return 0;
} 

以上是关于P5742 深基7.例11评等级的主要内容,如果未能解决你的问题,请参考以下文章

P5739 深基7.例7计算阶乘

P5729 深基5.例7工艺品制作

P5735 深基7.例1距离函数

P5736 深基7.例2质数筛

P5737 深基7.例3闰年展示

P5741 深基7.例10旗鼓相当的对手 - 加强版