#3565. 培训 题解

Duke 2020-06-20 20:16:12 2020-06-21 14:45:48 1

禁止复制粘贴,如果违规,liuser就要对你进行爱的抚摸就要接受惩罚

代码:

#include<bits/stdc++.h>    //牛逼的万能头文件 
using namespace std;
struct ss{    //结构体声明 
	string a; //名字 
	int b;    //年龄 
	int c;    //分数 
}a[100];
int main()
{/*
	freopen("train.in","r",stdin);     //文件操作 
	freopen("train.out","w",stdout);   //文件操作 
	*/
	//我裂开,原来要用文件操作的,现在。。。 
	int n;         //说明n(学生人数) 
	cin>>n;        //输入n 
	for(int i=1;i<=n;i++){
		cin>>a[i].a >>a[i].b >>a[i].c;    //输入每个同学的信息 
	}
	for(int i=1;i<=n;i++){
		cout<<a[i].a<<' '<<a[i].b +1<<' ';//输出,因为名字不会变,可以直接输出,年龄+1就可以了 
		if(a[i].c*1.2>600){    //我的小天才,都已经满分了,你还要怎么弄??? 
			cout<<"600";
		}
		else cout<<a[i].c *1.2;//成绩增加20%
		cout<<endl;            //不要忘了换行啊,不然你的WA又要增加了 
	}
	return 0;
}
//2333,这是我自己写的题解
//奥利给,参考一下嘛~~ 

不要见怪啊,童鞋们

ZP@KVX___0EXXH_____U8_G.gif

{{ vote && vote.total.up }}

共 7 条回复

Duke
        .......
       *       *
       *       *
       *       *
        .......
           .
           .
    ................
           .
           .
           .
          . .
         .   .
        .     .
Duke

liuser封号撒

Duke

@pikahuan何必呢?

pikahuan 逗比

给我用图,不要复制粘贴!!

Duke

嘿嘿~

root 站长

棒~

Duke

不过这个题还是蛮