OI-Codes/XSM OJ 重庆小码王集团OJ/小数和整数的输入和输出.cpp
2024-02-15 22:38:30 +08:00

14 lines
230 B
C++

#include <iostream>
#include <iomanip>
using namespace std;
int main(){
double a;
double b;
long long c;
cin >>a>>b>>c;
cout <<c<<endl;
cout <<fixed<<setprecision(2)<<b<<endl;
cout <<fixed<<setprecision(9)<<a;
return 0;
}