计算摄氏温度

题源

团体程序设计天梯赛

题解

#include<iostream>
using namespace std;
int F;
int main(){
    cin >> F;
    cout << "Celsius = " << 5*(F-32)/9 << endl;
    return 0;
}
posted @ 2021-04-22 22:08  summeriver13  阅读(30)  评论(0)    收藏  举报