6 条题解
-
1
张子瑞 LV 8 @ 2025-03-28 20:15:37
#include<bits/stdc++.h>
using namespace std;
int main()
{
double f,c;
cin>>f;
c = 5 * (f-32) / 9.0 ;
cout<<fixed<<setprecision(5)<<c*1.0;return 0;
} -
12025-03-28 20:14:53@
#include<bits/stdc++.h>
using namespace std;
int main()
{
double f,c;
cin>>f;
c = 5 * (f-32) / 9.0 ;
cout<<fixed<<setprecision(5)<<c*1.0;return 0;
} -
-12021-11-06 20:27:18@
#include<iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int main()
{
double f;
cin>>f;
cout<<fixed<<setprecision(5)<<5*(f-32)/9;
return 0;
} -
-32021-12-29 17:28:08@
#include<iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int main()
{
double f,c;
cin>>f;
c=5*(f-32)/9;
cout<<fixed<<setprecision(5)<<c<<endl;
return 0;
} -
-32021-11-21 21:30:17@
#include <iomanip>
#include <iostream>
using namespace std;
int main()
{
double f,C;
cin>>f;
C=5*(f-32)/9.0;
cout<<fixed<<setprecision(5)<<C;
return 0;
} -
-52021-10-29 15:59:45@
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
double f;
cin>>f;
cout<<?;
return 0;
}
- 1
信息
- ID
- 2317
- 难度
- 1
- 分类
- (无)
- 标签
- 递交数
- 164
- 已通过
- 116
- 通过率
- 71%
- 被复制
- 2
- 上传者