用C++编写程序:输入10个数,输出其中最大的数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用C++编写程序:输入10个数,输出其中最大的数相关的知识,希望对你有一定的参考价值。

考试试题

#include <iostream.h>

void main()

int i,d[10],max;
/* 输入模块 */
cout<<"请输入这十个数:"<<endl;
for(i=0;i<10;i++)
cin>>d[i];
/* 比较模块 */
max=d[0];
for(i=1;i<10;i++)
if(max<d[i])max=d[i];

cout<<"最大数为:"<<max<<"。"<<endl;
参考技术A 已经在VC++6.0上调试过了,能够很好地正确运行

#include <iostream>
using namespace std;

void main()

float array[10];
for(int i=0; i<10; i++)

cout<<"请输入第"<<(i+1)<<"个数"<<endl;
cin>>array[i];


float k=array[0];
for(i=1; i<10; i++)
if(array[i]>k)
k=array[i];
cout<<endl<<"这10个数中最大的数是:";
cout<<k<<endl;
参考技术B 回答

答:亲,步骤:1.先声明一个数组用来存入输入的整数,max是最大值的索引

2.从键盘上输入10个数并存入数组

3.max的初值为0,从a【0】开始遍历数组,如果有值比max位置对应的值大,就把当前的i赋给max

4.遍历结束,输出最大值

程序:

#include

int main()

\\x09int a[10];

\\x09int i;

\\x09int max;

\\x09cout<<"输入10个整数"<

\\x09for(i=0;i<10;i++)

\\x09

\\x09\\x09cin>>a[i];

\\x09

\\x09for(max=0,i=0;i<10;i++)

\\x09

\\x09\\x09if(a[max]

\\x09\\x09\\x09max=i;

\\x09

\\x09cout<<"最大值为"<

\\x09return 0;

参考技术C #include<iostream>
using namespace std;
int main()

int i,a,max;
for(i=1;i<=10;i++)

cin>>a;
if(i==1)max=a;
if(max<a)max=a;

cout<<"最大值:"<<max<<endl;
return 0;
参考技术D #include<stdio.h>
void main()

int a[10];
int i,m;
for(i=0;i<10;i++)
scanf("%d",&a[i]);
m=a[0];
for(i=0;i<10;i++)
if(m<a[i])
m=a[i];
printf("%d/n",m);

C++中怎么输出一个很大的数?深圳

标准输出函数cout :

/*关于浮点数的格式*/
#include <iostream.h>
void main()

float f=2.0/3.0,f1=0.000000001,f2=-9.9;
cout<<f<<' '<<f1<<' '<<f2<<endl; //正常输出
cout.setf(ios::showpos); //强制在正数前加+号
cout<<f<<' '<<f1<<' '<<f2<<endl;
cout.unsetf(ios::showpos); //取消正数前加+号
cout.setf(ios::showpoint); //强制显示小数点后的无效0
cout<<f<<' '<<f1<<' '<<f2<<endl;
cout.unsetf(ios::showpoint); //取消显示小数点后的无效0
cout.setf(ios::scientific); //科学记数法
cout<<f<<' '<<f1<<' '<<f2<<endl;
cout.unsetf(ios::scientific); //取消科学记数法
cout.setf(ios::fixed); //按点输出显示
cout<<f<<' '<<f1<<' '<<f2<<endl;
cout.unsetf(ios::fixed); //取消按点输出显示
cout.precision(18); //精度为18,正常为6
cout<<f<<' '<<f1<<' '<<f2<<endl;
cout.precision(6); //精度恢复为6


操纵算子:
/*关于浮点数的格式*/
#include <iomanip.h>
void main()

float f=2.0/3.0,f1=0.000000001,f2=-9.9;
cout<<f<<' '<<f1<<' '<<f2<<endl; //正常输出
cout<<setiosflags(ios::showpos); //强制在正数前加+号
cout<<f<<' '<<f1<<' '<<f2<<endl;
cout<<resetiosflags(ios::showpos); //取消正数前加+号
cout<<setiosflags(ios::showpoint); //强制显示小数点后的无效0
cout<<f<<' '<<f1<<' '<<f2<<endl;
cout<<resetiosflags(ios::showpoint); //取消显示小数点后的无效0
cout<<setiosflags(ios::scientific); //科学记数法
cout<<f<<' '<<f1<<' '<<f2<<endl;
cout<<resetiosflags(ios::scientific); //取消科学记数法
cout<<setiosflags(ios::fixed); //按点输出显示
cout<<f<<' '<<f1<<' '<<f2<<endl;
cout<<resetiosflags(ios::fixed); //取消按点输出显示
cout<<setprecision(18); //精度为18,正常为6
cout<<f<<' '<<f1<<' '<<f2<<endl;
cout<<setprecision(6); //精度恢复为6

参考技术A 这个数有多大?
如果超过了基本数据类型最大范围的话,需要用的高精度处理,也就是把一个数的每一位存到一个很大数组中的某一个元素里。大数的加减乘除算法在网上有很多思路,去搜搜看吧本回答被提问者采纳
参考技术B int 32位或64位
long 64位
double long 128位
显然楼主可以选择double long

以上是关于用C++编写程序:输入10个数,输出其中最大的数的主要内容,如果未能解决你的问题,请参考以下文章

C++ 输入10个整数 输出最大数

用c语言编程,从键盘上输入10个整数存放到一维数组中,输出其中最大的数及其对应的数组下标值

用传统流程图表示该算法:依次将10个数输入,要求将其中最大的数输出

编写一个C语言程序:输入10个整数,找出其中绝对值最小的数,将它和最后一个数交换,然后输出这10个数。

C++中怎么输出一个很大的数?深圳

依次将10个数输入,要求输出其中最大的数。