[Plain]
/* Start the comments in the program header (to avoid any problems encountered during the submission of blog posts, the slash used to indicate that the comments have been deleted)
* Copyright and version Declaration of the program
* All rights reserved.
* File name: txt. c
* Author: liuyongshui
* Question: Convert the Fahrenheit temperature to the Celsius temperature. formula: degree Celsius = 5/9 (Fahrenheit-32)
* Completion date: January 1, April 8, 2013
* Version No.: V1.0
*/
# Include <stdio. h>
Int main ()
{
Float Centigrade;
Float Fahrenheit;
Printf ("enter an Fahrenheit temperature :");
Scanf ("% f", & Fahrenheit );
Centigrade = 5.0/9*(Fahrenheit-32 );
Printf ("% 3f: % 3f \ n when converting Fahrenheit to Celsius", Fahrenheit, Centigrade );
Return 0;
}
/* Start the comments in the program header (to avoid any problems encountered during the submission of blog posts, the slash used to indicate that the comments have been deleted)
* Copyright and version Declaration of the program
* All rights reserved.
* File name: txt. c
* Author: liuyongshui
* Question: Convert the Fahrenheit temperature to the Celsius temperature. formula: degree Celsius = 5/9 (Fahrenheit-32)
* Completion date: January 1, April 8, 2013
* Version No.: V1.0
*/
# Include <stdio. h>
Int main ()
{
Float Centigrade;
Float Fahrenheit;
Printf ("enter an Fahrenheit temperature :");
Scanf ("% f", & Fahrenheit );
Centigrade = 5.0/9*(Fahrenheit-32 );
Printf ("% 3f: % 3f \ n when converting Fahrenheit to Celsius", Fahrenheit, Centigrade );
Return 0;
}