Information
- ID
- 6836
- Time
- 1000ms
- Memory
- 512MiB
- Difficulty
- 1
- Tags
- # Submissions
- 22
- Accepted
- 14
- Uploaded By
#include<bits/stdc++.h>
using namespace std;
int main()
{
double x;
cin>>x;
cout<<fixed<<setprecision(3)<<x<<endl;
return 0;
}
#include
#include
using namespace std;
int main()
{
float x=12.34521;
cin>>x;cout <<setprecision(3) <<std::fixed<<x <<endl;
return 0;
}
By signing up a HFOJ universal account, you can submit code and join discussions in all online judging services provided by us.