2 solutions
-
0
Guest MOD
- 1
Information
- ID
- 1252
- Time
- 1000ms
- Memory
- 128MiB
- Difficulty
- 4
- Tags
- # Submissions
- 64
- Accepted
- 28
- Uploaded By
#include<bits/stdc++.h> using namespace std; int main(){ double f; cin>>f; double c=5*(f-32)/9; cout<<fixed<<setprecision(5)<<c; return 0; }
#include<bits/stdc++.h>
using namespace std;
int main(){
double c,f;
cin>>f;
c=5*(f-32)/9;
printf("%.5f",c);
return 0;
}
By signing up a Hydro universal account, you can submit code and join discussions in all online judging services provided by us.