请问为什么会WA啊()
#include<bits/stdc++.h>
using namespace std;
int main(){
int n, b[100001], c[100001];
string a[100001];
cin >> n;
for(int i = 1; i <= n; i++){
cin >> a[i] >> b[i] >> c[i];
}
for(int i = 1; i <= n; i++){
if(c[i] * 1.2 >= 600){
cout<< a[i] << " " << b[i]+1 << " 600";
}
else{
cout << a[i] << " " << b[i]+1 << " " << c[i] * 1.2 <<endl;
}
}
return 0;
}