継続的に温度を入力ユーザが偽値を入力すると「Q」のように入力温度積算の平均温度を算出し出力する
477 ワード
#include "stdafx.h"
#include "stdlib.h"
int main()
{
int days=0;
double ave=0,col;
printf("Please input Temperature : ");
while(scanf("%lf",&col)==1)
{
ave+=col;
printf("Please input to calculate the average temperature Press 'Q' to quit : ");
days++;
}
printf("%lf
",ave/days);
system("pause");
return 0;
}