c++ 输入5个数,求和,求平均值

#include <iostream>
int main()
{
using namespace std;
cout<<"The Amazing Accounto will sum and average ";
cout<<"five numbers for you.\n";
cout<<"Please enter five values:\n";
double number;
double sum=0.0;
for(int i=1;i<=5;i++)
{
cout<<"Value "<<i<<": ";
cin>>number;
sum+=number;
}
cout<<"Five exquisite chices indeed! ";
cout<<"They sum to "<<sum<<endl;
cout<<"and average to "<<sum/5<<"\n";
cout<<"The Amazing Account bids you adieu!\n";

return 0;
}

posted @ 2013-02-27 11:07  徐耀湘  阅读(2221)  评论(0编辑  收藏  举报