2007年9月3日 星期一

小考一(A) 題目


/* C Programming Quiz 1A */
/*
題目:輸入里程,並計算出車費。假設里程在 1500 公尺以下皆為 70 元,每超過 500 公尺加 5元,不足 500 公尺以 500 公尺計算。
輸入值:0 ~ 5000 公尺之間任意值
輸出值:價格
*/


#include <stdio.h>
#include <stdlib.h>
int main(void)

{
int taxi_dist, price;

printf("To compute the price, please enter the distance -> ");
/* Your program starts here */




system("pause");
return 0;
}



解答下載
返回小考目錄
回到首頁

沒有留言: