标签:数值 using code ret https set 编写 cin 程序
给定一个华氏温度 \(F\),本题要求编写程序,计算对应的摄氏温度 \(C\)。计算公式:\(C=5×(F?32)/9\)。题目保证输入与输出均在整型范围内。
输入在一行中给出一个华氏温度。
在一行中按照格式 Celsius = C
输出对应的摄氏温度 \(C\) 的整数值。
150
Celsius = 65
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll n;
int main()
{
cin>>n;
cout<<"Celsius = "<<5*(n-32)/9<<endl;
return 0;
}
标签:数值 using code ret https set 编写 cin 程序
原文地址:https://www.cnblogs.com/LengYun/p/12543136.html