导航切换
HZNUOJ
ProblemSet
Contests
F.A.Q
Others
Programming Fundamentals
Donation
KeyWords
Login
Login
Hide Tag
Problems
Status
Standings
【C系列2.13】摄氏度与华氏度之间的转化
Tags:
算术运算
科学计算
Time Limit:
1 s
Memory Limit:
128 MB
Submission:
8219
AC:
4351
Score:
10.00
Submit
Codes
AI Code Tips
Description
如题,完成摄氏度与华氏度的转化,f = 9 / 5 * c + 32 ( c 表示摄氏温度,f 表示华氏温度)
Input
输入一个实数 c 表示摄氏温度。
Output
输出对应的华氏度 f 。(结果保留两位小数)
Samples
input
Copy
5
output
Copy
41.00
Submit
Codes