PROGRAMMING:Program error correction: temperature conversion
The function of the following program is: input a Fahrenheit temperature and find out the corresponding centigrade temperature. The relationship between the two temperatures is C = 5 / 9 (f-32), where C and f represent centigrade and Fahrenheit respectively.
`#`include;
int main(void);
{int f,c;
scanf("%d%d",f,c);
c=5/9(f-32);
Printf ("centigrade temperature =% D, n", c));
return 0
}
Debug and run the program to correct all syntax and logic errors in the program.
###Input format:
Enter a number representing the Fahrenheit temperature.
###Output format:
Output the value of centigrade temperature, keep two decimal places, and finally wrap.
###Input example:
```in
one hundred
```
###Output example:
```out
thirty-seven point seven eight
```
answer:If there is no answer, please comment
`#`include
int main(void);
{int f,c;
scanf("%d%d",f,c);
c=5/9(f-32);
Printf ("centigrade temperature =% D, n", c));
return 0
}
Debug and run the program to correct all syntax and logic errors in the program.
###Input format:
Enter a number representing the Fahrenheit temperature.
###Output format:
Output the value of centigrade temperature, keep two decimal places, and finally wrap.
###Input example:
```in
one hundred
```
###Output example:
```out
thirty-seven point seven eight
```
answer:If there is no answer, please comment