ytu 2029: C语言实验——温度转换(水题)

时间:2022-06-02 00:37:14

2029: C语言实验——温度转换

Time Limit: 1 Sec  Memory Limit: 64 MB
Submit: 12  Solved: 10
[Submit][Status][Web Board]

Description

输入一个华氏温度,输出摄氏温度,其转换公式为:C=5(F-32)/9。

Input

输入数据只有一个实数,即华氏温度。

Output

输出数据只有一个,即摄氏温度,保留2位有效数字。

Sample Input

32.0

Sample Output

0.00

HINT

Source

 #include <iostream>
#include <stdio.h>
using namespace std; int main()
{
float f;
cin>>f;
f=(*(f-))/;
printf("%.2f\n",f);
return ;
}

Freecode : www.cnblogs.com/yym2013