这是我在杭州ACM网站上做的第一道题
http://acm.hdu.edu.cn/showproblem.php?pid=1000
呵呵,a beginning~题目要注意的是我们以前对这种类型题目常规的做法是:
- #include <iostream>
- using namespace std;
- int main()
- {
- int i, j;
- cin>>i>>j;
- cout<<i+j<<endl;
- return 0;
- }
但是要记住,ACM比赛的题目是循环测试的,因为CASE是有很多组的,一般来说结束条件会在题目中详细说明,例如这题,测试结束的条件是: Process to end of file.
以文件的结尾为结束标志,所以要注意了,在这里给出一个规范的输入格式:
- #include <iostream>
- using namespace std;
- int main()
- {
- int i, j;
- while (cin>>i>>j)
- {
- cout<<i+j<<endl;
- }
- return 0;
- }
当cin遇到文件的结尾时,会返回一个false,同时也就结束了while()循环,所以这条题目的标准写法是这样的。这题目并没有涉及到算法方面的知识,但却提醒大家了,ACM比赛的题目是有一些规范的标准输入输出需要大家去掌握的,毕竟游戏都有自己的规则,希望大家在做题中不断的体会。