P5744 深基7.习9培训

Posted Kunkun只喝怡宝

tags:

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

在这里插入图片描述

代码

培训了一年,年龄也要加一。

#include<bits/stdc++.h>

using namespace std;

struct Student{
	string name;
	int age;
	int scores;
};
int main(){
	Student stu;
	int n,i;
	cin>>n;
	for(i=0;i<n;i++){
		cin>>stu.name>>stu.age>>stu.scores;
		stu.age++;
		stu.scores*=1.2;
		if(stu.scores>600) stu.scores=600;
		cout<<stu.name<<" "<<stu.age <<" "<<stu.scores<<endl; 
	}
	return 0;
}

以上是关于P5744 深基7.习9培训的主要内容,如果未能解决你的问题,请参考以下文章

P5732 深基5.习7杨辉三角

P5743 深基7.习8猴子吃桃

P5731 深基5.习6蛇形方阵

P5725 深基4.习8求三角形

P5731 深基5.习6蛇形方阵

P5724 深基4.习5求极差