C語言程式設計-現代方法 第二版 第2.6小節 華氏溫度轉化為攝氏溫度

我要的暱稱被註冊了發表於2020-12-12

第2.6小節 華氏溫度轉化為攝氏溫度

//This is a comment
//Author:King
//Time:2020/12/4
//Reference:C Programming:A Modern Approach,Second Edition

/***************************************************************
2.6小節程式碼 把華氏溫度轉化為攝氏溫度 
****************************************************************/

#include <stdio.h>

#define FREEZING_PT 32.0f
#define SCALE_FACTOR (5.0f/9.0f)

int main(void)
{
	float fahrenheit, celsius;
	
	printf("Enter fahrenheit temperature:");
	scanf("%f",&fahrenheit);
	
	celsius = (fahrenheit - FREEZING_PT) * SCALE_FACTOR;
	printf("Celsius equivalent: %.1f\n",celsius);
	//getch();	//可以多加幾個getchar()函式,這樣多敲幾下Enter鍵就可以退出程式 
	//getch();

	//while(1);	//這種情況程式進入死迴圈,無法return 0 ,需要手動關閉執行視窗 
	system("pause");	//加入該函式後可以使得生產的exe單獨執行,不會發生閃退。也可以加入其它函式使得main函式無法返回即可。如while(1)、getchar() 
	return 0;
	
}

相關文章