-->
当前位置:首页 > 题库

PROGRAMMING:Calculate the temperature in centigrade

Luz5年前 (2021-05-10)题库473
Given a Fahrenheit temperature $$f $$, this problem requires the preparation of procedures to calculate the corresponding centigrade temperature $$C $$. Calculation formula: $$C = 5 times (f-32) / 9 $$. Ensure that the input and output are in the range of integer.
###Input format:
The input gives a Fahrenheit temperature on one line.
###Output format:
In one line, output the integer value of the corresponding centigrade temperature C according to the format "Celsius = C".
###Input example:
```in
one hundred and fifty
```
###Output example:
```out
Celsius = 65
```






answer:If there is no answer, please comment