mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 06:38:48 +00:00
19 lines
364 B
C++
19 lines
364 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
const char endl = '\n';
|
|
|
|
char a;
|
|
int b;
|
|
float c;
|
|
double d;
|
|
|
|
int main() {
|
|
std::ios::sync_with_stdio(false);
|
|
cin >> a >> b >> c >> d;
|
|
cout << a << ' ' << b << ' ' << std::fixed << std::setprecision(6) << c << ' ' << std::fixed << std::setprecision(6) << d << endl;
|
|
return 0;
|
|
}
|