1. 程式人生 > >練習 1-3 修改溫度轉換程式,使之能在轉換表的頂部列印一個標題。

練習 1-3 修改溫度轉換程式,使之能在轉換表的頂部列印一個標題。

C語言程式設計(第二版) 練習1-3 個人設計

練習1-3 修改溫度轉換程式,使之能在轉換表的頂部列印一個標題。

程式碼塊:

#include <stdio.h>
#include <stdlib.h>
int main()
{
	double c, f;
	printf("Temperature conversion table\n");
	for (f=0; f<=300; f+=20){
		c=5*(f-32)/9;
		printf("%8.1f    %8.1f\n", f, c);
	}
	system("pause");
	return 0;
}