C++ 输入10个整数 输出最大数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 输入10个整数 输出最大数相关的知识,希望对你有一定的参考价值。
参考技术A #include<iostream>using namespace std;
void main()
int num[10];
int i;
int max,smax;
cout<<"请输入10个数"<<endl;
for(i=0;i<10;i++)
cin>>num[i];
if(num[0]<num[1])
max=num[0];
smax=num[1];
else
max=num[1];
smax=num[0];
for(i=2;i<10;i++)
if(num[i]>=max)
smax=max;
max=num[i];
if(num[i]<max && num[i]>smax)
smax=num[i];
cout<<"最大数为"<<max<<endl<<"次大数为"<<smax<<endl;
参考技术B #include <iostream>
using namespace std;
int main()
int a, i, maxnum = 0;
for (i = 0; i != 10; ++i)
cin >> a;
maxnum = (maxnum > a ? maxnum : a);
cout << "max number: " << maxnum << endl;
return 0;
参考技术C #include <stdio.h>
int main()
int a[10];
int maxone;
printf("输入十个数字\n");
for (int i = 0;i<10;i++)
scanf("%d",&a[i]);
maxone = a[0];
for (i = 1 ;i < 10;i++)
if (maxone<a[i])
maxone= a[i];
else
continue;
printf("%d\n",maxone);
return 0;
参考技术D 大哥,这么简单都拿出来丢人现眼啊!!! 第5个回答 2011-09-08 ////////////////////////疑问追问 满意采纳/////////////////////////////////
-4
3
5
6
7
3
2
-98
65
34
The Max is 65
Press any key to continue
#include <iostream>
using namespace std;
main()
int i,input=0,maxNum;
maxNum=input;
for (i=0;i<10;i++)
cin>>input;
if (input>maxNum)
maxNum=input;
cout<<"The Max is "<<maxNum<<endl;
华为机试真题 C++ 实现组成最大数
目录
题目
小组中每位都有一张卡片,卡片上是6位内的正整数,将卡片连起来可以组成多种数字,计算组成的最大数字。
输入描述
“,”号分割的多个正整数字符串,不需要考虑非数字异常情况,小组最多25个人。
输出描述
最大的数字字符串
示例1 输入输出示例仅供调试,后台判题数据一般不包含示例
输入
22,221
输出
22221
示例2 输入输出示例仅供调试,后台判题数据一般不包含示例
输入
4589,101,4142
以上是关于C++ 输入10个整数 输出最大数的主要内容,如果未能解决你的问题,请参考以下文章
Java程序题:从键盘输入的方式,产生10个10以内的整数,输出这10个数中最大数与最小数的平方和?