设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1661|回复: 0
打印 上一主题 下一主题

关于一个编程的问题, 高手帮下忙!!!

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 01:37:44 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
先来说一下编程的要求: 他是要求用户输入要加多少个数字, 然后输入每一个数字, 然后程序把这些数字加起来,再把平均数算出来, 然后再显示出你刚才输入的数字里最大的数字是哪个,最小数字是哪个。 现在前面的我都会写,主要是不知道怎么把最大数和最小数显示出来, 高手来帮帮忙, 谢谢。 这个是我写的程序。
#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;
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 06:43 , Processed in 0.109080 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表