NEUQ-Cpp-01-编程题

7-1 计算摄氏温度 (5分)本题要求编写程序,计算华氏温度100°F对应的摄氏温度。计算公式:C=5×(F?32)/9,式中:C表示摄氏温度,F表示华氏温度,输出数据要求为整型。
输入格式:
本题目没有输入。
输出格式:
按照下列格式输出
fahr = 100, celsius = 计算所得摄氏温度的整数
#include
using namespace std;
int main()
{
int fahr=100,celsius;
celsius=5*(fahr-32)/9;
cout<<"fahr = "<

    推荐阅读