Q:定義一結構,內含攝氏與華氏一週七天之溫度及平均溫度,請由使用者輸入攝氏溫度後,轉為華氏溫度,並計算平均值後輸出。(註:一週之溫度以陣列表示,公式 F=9/5C+32)
2007-05-30 11:09:10 · 2 個解答 · 發問者 小雅 2 in 電腦與網際網路 ➔ 程式設計
//Power by Visual Studio 2005
#include
#include
struct strTemp{
double T[8];
}t;
double ctof(double C){
return 9.0*C/5.0+32;
}
int main(int argc, char* argv[]){
//==========START==========//
int i;
double temp;
for(i=0;i<7;i++){
printf("Input T(C) of %d day: ",i+1),scanf("%lf",&temp);
t.T[i]=ctof(temp),t.T[7]+=t.T[i];
}
printf("Average= %lf F\n",t.T[7]/7);
//==========END==========//
system("PAUSE");
return 0;
}
2007-05-30 16:50:56 補充:
吸語言
嚴格來說不是吸加加
>_<|||
2007-05-30 12:46:59 · answer #1 · answered by Big_John-tw 7 · 0⤊ 0⤋
//Visual c++ 2005
#include
using namespace std;
int main(){
double T[8];
double a;
for(int i=0;i<7;i++){
cout<<"輸入 攝氏溫度 第 "<
cin>>a;
T[i]=(((9.0)*a)/(5.0))+32;
}
cout<<"平均= "<<(T[0]+T[1]+T[2]+T[3]+T[4]+T[5]+T[6])/7<<" 華氏溫度\n";
system("PAUSE");
}
2007-05-30 14:14:09 · answer #2 · answered by 茄子熊 2 · 0⤊ 0⤋