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

九度oj 题目1046:求最大值

时间:2017-02-24 12:02:02      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:code   turn   提交   begin   九度   out   tor   family   scanf   

题目1046:求最大值

时间限制:1 秒

内存限制:32 兆

特殊判题:

提交:11782

解决:4789

题目描述:

输入10个数,要求输出其中的最大值。

输入:

测试数据有多组,每组10个数。

输出:

对于每组输入,请输出其最大值(有回车)。

样例输入:
10 22 23 152 65 79 85 96 32 1
样例输出:
max=152

 1 #include <iostream>
 2 #include <vector>
 3 #include <algorithm>
 4 using namespace std;
 5 
 6 int main(){
 7     int t;
 8     vector<int> v;
 9     while(cin >> t){
10         v.push_back(t);
11         for(int i = 0; i < 9; i++){
12             cin >> t;
13             v.push_back(t);
14         }
15         cout << "max=" << *max_element(v.begin(), v.end()) << endl;
16         v.clear();
17     }
18 }
 1 #include <stdio.h>
 2 
 3 int main(){
 4     int temp, max, i;
 5     while(scanf("%d", &temp) != EOF){
 6         max = temp;
 7         for(i = 0; i < 9; i++){
 8             scanf("%d", &temp);
 9             if(temp > max)
10                 max = temp;
11         }
12         printf("max=%d\n", max);
13     }
14     return 0;
15 }

 

 

九度oj 题目1046:求最大值

标签:code   turn   提交   begin   九度   out   tor   family   scanf   

原文地址:http://www.cnblogs.com/qinduanyinghua/p/6437625.html

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