1. 程式人生 > >哈工大機考:求最大值

哈工大機考:求最大值

style 回車 iostream 題目 cin 輸入 class mes 空間

時間限制: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; } }

哈工大機考:求最大值