首页 > 代码库 > Problem J: 求个最大值
Problem J: 求个最大值
Problem J: 求个最大值
Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 871 Solved: 663
[Submit][Status][Web Board]
Description
定义MaxValue类,用于求一系列非零整数的最大值。其中:
1. 数据成员elements用于存储所有输入的非零整数。
2. void append(int)用于向elements中添加一个新数据。
3. int getMax()用于求出elements中的最大值。
Input
输入若干个整数,以输入0表示输入结束。
Output
所有输入的非零整数中的最大值。
Sample Input
321
496
553
338
837
463
158
154
929
537
0
Sample Output
929
HINT
使用vector更为容易实现。
Append Code
append.cc,
#include<iostream> #include<string> #include<algorithm> #include<vector> using namespace std; #define maxn 10000 int ipos=0; class MaxValue { public: int a[maxn]; void append(int t) { a[ipos++]=t; } int getMax() { return *max_element(a,a+ipos); } }; int main() { int a; MaxValue test; cin>>a; while (a != 0) { test.append(a); cin>>a; } cout<<test.getMax()<<endl; return 0; }
Problem J: 求个最大值
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。