码迷,mamicode.com
首页 > 其他好文 > 详细

哈工大机考:求最大值

时间:2017-05-26 15:53:26      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:输出   std   空间   color   title   style   整数   class   sort   

时间限制: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;
  }
}

 

哈工大机考:求最大值

标签:输出   std   空间   color   title   style   整数   class   sort   

原文地址:http://www.cnblogs.com/mlgjb/p/6908716.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!