acm之奇葩数据输入专题
Posted aiahtwo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了acm之奇葩数据输入专题相关的知识,希望对你有一定的参考价值。
1.每組测试数据都在一行,不知道每组测试数据的长度,以换行为测试数据输入的结束
关键代码:if (cin.get() == ‘ ‘) {语句}
例如:找出每组测试的最大值:
输入:
3 1 4 2 3
5 1 4 2 -1 6
输出:
4
6
代码:
#include<iostream> using namespace std; #define inf -922337 int main() { int max=inf; int t; while(cin>>t) { if(t>max) max=t; if(cin.get()==‘ ‘) { cout<<max<<endl; max=inf; } } }
以上是关于acm之奇葩数据输入专题的主要内容,如果未能解决你的问题,请参考以下文章