哈工大机考:求最大值
Posted 哦摩西罗伊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了哈工大机考:求最大值相关的知识,希望对你有一定的参考价值。
时间限制:1秒 空间限制:32768K
题目描述
输入10个整数,要求输出其中的最大值。
输入描述:
测试数据有多组,每组10个整数。
输出描述:
对于每组输入,请输出其最大值(有回车)。
输入例子:
10 22 23 152 65 79 85 96 32 1
输出例子:
max=152
上代码:
#include <iostream> #include <algorithm> using namespace std; int main(){ int a[10]; while(cin>>a[0]){ for(int i=1;i<10;i++) cin>>a[i]; sort(a,a+10); cout<<"max="<<a[9]<<endl; } }
以上是关于哈工大机考:求最大值的主要内容,如果未能解决你的问题,请参考以下文章