In the end where the wrong?

Users questions: # Include stdio.h voidmain () {floatf, c; scanf ("Enter Fahrenheit temperature% d", & f); c = 5 * 9 * (f-32); printf ("Output Kelvin% f * n" , & c);} 7777 77 # include stdio.h voidmain () {floatf, c; scanf ("Enter Fahrenheit temperature% f", & f); ** float type to read is% f,% d is an integer c = 5.0 * 9 * ( f-32); ** at the beginning Must be type float, or must be zero, the type will inherit, integer * integer = integer printf ("Output Kelvin% f * n", c); ** output when the parameters do not add address character} Yes, you have to pay attention to the scanf statement, your writing is scanf ("Enter Fahrenheit temperature% f", & f); it's time to enter the input: Input temperature of 27.5 Fahrenheit this format.
  • This information provided by the users.Thanks!