博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU1089-HDU1096 A+B for Input-Output Practice (I)-(VIII)(入门必备训练)
阅读量:6367 次
发布时间:2019-06-23

本文共 4093 字,大约阅读时间需要 13 分钟。

这若干个程序是输入输出的基本模式,需要烂熟于心。

首先给出测试用程序。这是每一个OJ都会有的测试程序,可以用来走一个流程体会一下。

后8个程序是有关输入输出练习,是入门必备。这些几乎涵盖了所有输入输出的基本模式。

问题链接

Problem Description:

Calculate A + B.

Each line will contain two integers A and B. Process to end of file.

For each case, output
A + B in one line.
 

问题简述:计算A+B。

AC的C++程序如下:

#include 
using namespace std;int main(){ int a, b; while(cin >> a >> b) { cout << a + b << endl; } return 0;}

问题链接:

Problem Description:

Your task is to Calculate a + b.

Too easy?! Of course! I specially designed the problem for acm beginners.
You must have found that some problems have the same titles with this one, yes, all these problems were designed for the same aim.

问题简述

你的任务是计算a+b.太简单了?当然!这题是特别为ACM新手设计的。你会发现很多类似标题的题目,没错,这些题目都是为了相同的目的设计的。

输入包含一系列由空格分开的a、b整数对,每行两个数。

对于每对a、b,要求在一行输出a加b的和,每组数据输出占一行。 

AC的C++程序如下:

/* HDU1089 A+B for Input-Output Practice (I) */#include 
using namespace std;int main(){ int a, b; while(cin >> a >> b) { cout << a + b << endl; } return 0;}

问题链接:

Problem Description:

Your task is to Calculate a + b.

Input contains an integer N in the first line, and then N lines follow. Each line consists of a pair of integers a and b, separated by a space, one pair of integers per line.

For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input. 

问题简述

你的任务是计算a+b。

输入的第一行包含一个整数N,表示接下来有N行数据。每行包括两个整数:a,b,由空格隔开。

对于每组a,b要求输出a加b的和,每组输出数据占一行。 

AC的C++程序如下:

/* HDU1090 A+B for Input-Output Practice (II) */#include 
using namespace std;int main(){ int n, a, b; cin >> n; while(n--) { cin >> a >> b; cout << a + b << endl; } return 0;}

问题链接:

Problem Description:

Your task is to Calculate a + b.

Input contains multiple test cases. Each test case contains a pair of integers a and b, one pair of integers per line. A test case containing 0 0 terminates the input and this test case is not to be processed.

For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.  

问题简述

你的任务是计算a+b。

输入包含多组测试数据,每组数据占一行,包含两个整数a,b,由空格隔开。输入0 0表示输入数据结束,0 0这组数据不用处理。

对于每组a,b要求输出a加b的和,每组输出数据占一行。

AC的C++程序如下:

/* HDU1091 A+B for Input-Output Practice (III) */#include 
using namespace std;int main(){ int a, b; while(cin >> a >> b && (a || b)) { cout << a + b << endl; } return 0;}

问题链接:

AC的C++程序如下:

/* HDU1092 A+B for Input-Output Practice (IV) */#include 
using namespace std;int main(){ int n, a, sum; while(cin >> n && n) { sum = 0; for(int i=1; i<=n; i++) { cin >> a; sum += a; } cout << sum << endl; } return 0;}

问题链接:

AC的C++程序如下:

/* HDU1093 A+B for Input-Output Practice (V) */#include 
using namespace std;int main(){ int n, m, a, sum; cin >> n; while(n--) { cin >> m; sum = 0; for(int i=1; i<=m; i++) { cin >> a; sum += a; } cout << sum << endl; } return 0;}

问题链接:

AC的C++程序如下:

/* HDU1094 A+B for Input-Output Practice (VI) */#include 
using namespace std;int main(){ int n, a, sum; while(cin >> n) { sum = 0; for(int i=1; i<=n; i++) { cin >> a; sum += a; } cout << sum << endl; } return 0;}

问题链接:

AC的C++程序如下:

/* HDU1095 A+B for Input-Output Practice (VII) */#include 
using namespace std;int main(){ int a, b; while(cin >> a >> b) { cout << a + b << endl; cout << endl; } return 0;}

问题链接:

AC的C++程序如下:

/* HDU1096 A+B for Input-Output Practice (VIII) */#include 
using namespace std;int main(){ int n, m, a, sum; cin >> n; for(int i=1; i<=n; i++) { cin >> m; sum = 0; for(int j=1; j<=m; j++) { cin >> a; sum += a; } if(i != 1) cout << endl; cout << sum << endl; } return 0;}

转载于:https://www.cnblogs.com/tigerisland/p/7563777.html

你可能感兴趣的文章
shields小徽章是如何生成的?以及搭建自己的shield服务器
查看>>
猫头鹰的深夜翻译:spring事务管理
查看>>
记一次使用Spring REST Docs + travis + github自动生成API接口文档的操作步骤(下)...
查看>>
1、集合 2、Iterator迭代器 3、增强for循环 4、泛型
查看>>
关于/var/run/docker.sock
查看>>
SCrapy爬虫大战京东商城
查看>>
用 JavaScript 实现链表操作 - 11 Alternating Split
查看>>
Laravel优秀扩展包整理
查看>>
日志分析之识别真假蜘蛛与处理办法
查看>>
太多脚本将会毁掉持续交付
查看>>
一地鸡毛 OR 绝地反击,2019年区块链发展指南
查看>>
卢森堡大学发布RepuCoin系统,可破解区块链51%攻击
查看>>
国内云计算厂商众生相:四大阵营十几家企业生存盘点
查看>>
细说Unicode(一) Unicode初认识
查看>>
Node.js有了新的管理者
查看>>
Java 20年:历史与未来
查看>>
彻底理解Javascript中的原型链与继承
查看>>
腾讯最大规模裁撤中层干部,让贤年轻人
查看>>
gRPC-Web发布,REST又要被干掉了?
查看>>
如何:强化 TCP/IP 堆栈安全
查看>>