0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 02:25:25 +00:00

P5744 【深基7.习9】培训

R38782109
This commit is contained in:
Baoshuo Ren 2020-09-23 19:33:52 +08:00 committed by Baoshuo Ren
parent 70cc61de43
commit 4ebaa9f954
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

19
problem/P5744/P5744.cpp Normal file
View File

@ -0,0 +1,19 @@
// R38782109
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
string name;
int age;
int score;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> name >> age >> score;
cout << name << ' ' << ++age << ' ' << ((int)(score * 1.2) > 600 ? 600 : (int)(score * 1.2)) << endl;
}
return 0;
}