题解 | 复读机
复读机
https://www.nowcoder.com/practice/9d381551b6ab40c4b5c3c8d60fe4066e
#include <iostream>
using namespace std;
int main() {
long long int a, b;
float c;
string d;
string e;
cin >> a >> b >> c >> d >> e;
cout << a << endl << b << endl;
printf("%.1f\n", c);
cout<< d << endl << e << endl;
return 0;
}
