先来说一下编程的要求: 他是要求用户输入要加多少个数字, 然后输入每一个数字, 然后程序把这些数字加起来,再把平均数算出来, 然后再显示出你刚才输入的数字里最大的数字是哪个,最小数字是哪个。 现在前面的我都会写,主要是不知道怎么把最大数和最小数显示出来, 高手来帮帮忙, 谢谢。 这个是我写的程序。
#include <iostream>
using namespace std;
main()
{
int count=0;
double total=0, number, n, average;
cout<<"Enter how many numbers do you want to put in.\n";
cin>>n;
do
{
cout<<"Enter a whole number.\n";
cin>>number;
total=number+total;
count++;
}while (count!=n);
average= total/count;
cout<<"After add these "<<count<<" numbers,\n";
cout<<"the total of these numhers are:\n";
cout<<total<<endl;
cout<<"The average is:\n";
cout<<average<<endl;
return 0;
}