Basic algorithm statement problem (15 12:0:58) The known conversion formula between Fahrenheit temperature and centigrade temperature is: (Fahrenheit temperature - 32) * 5 / 9 = centigrade temperature Write a program, input a Fahrenheit temperature, output its corresponding centigrade temperature Use input, output, assignment statements to answer  

Basic algorithm statement problem (15 12:0:58) The known conversion formula between Fahrenheit temperature and centigrade temperature is: (Fahrenheit temperature - 32) * 5 / 9 = centigrade temperature Write a program, input a Fahrenheit temperature, output its corresponding centigrade temperature Use input, output, assignment statements to answer  

The procedure is as follows:
①float ft,ct;
② Printf ("please enter a Fahrenheit temperature):";
③scanf("%f",&ft);
④ct=(ft-32)*5/9;
⑤ Printf ("Fahrenheit temperature% f converted to centigrade temperature is% F", FT, CT) ";
explain:
Statement 3 is input;
Statement 5 is output;
Statement 4 is an assignment