码迷,mamicode.com
首页 > 其他好文 > 详细

L1-004 计算摄氏温度

时间:2019-01-19 22:51:12      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:problem   html   范围   lan   name   要求   bsp   ase   编写   

L1-004 计算摄氏温度 (5 分)

给定一个华氏温度F,本题要求编写程序,计算对应的摄氏温度C。计算公式:C=5×(F?32)/9。题目保证输入与输出均在整型范围内。

输入格式:

输入在一行中给出一个华氏温度。

输出格式:

在一行中按照格式“Celsius = C”输出对应的摄氏温度C的整数值。

输入样例:

150

输出样例:

Celsius = 65
 1 #include<iostream>
 2 
 3 using namespace std;
 4 
 5 int main(){
 6   int degree = 0;
 7   cin>>degree;
 8   int celsius = 5 * (degree - 32) / 9;
 9   cout <<"Celsius = "<<celsius;
10   return 0;
11 }

 


L1-004 计算摄氏温度

标签:problem   html   范围   lan   name   要求   bsp   ase   编写   

原文地址:https://www.cnblogs.com/Frances-CY-FKYM/p/10293427.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!