标签:输出 std 空间 color title style 整数 class sort
测试数据有多组,每组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