题解 1087: A+B for Input-Output Practice (III)

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1087: A+B for Input-Output Practice (III)

摘要:解题思路:输一个输出一个,直到“0 0”。注意事项:要写出终止循环的方法哦!参考代码:#include<iostream> using namespace std; int main() { ……

输入截止易错点判断

摘要:原题链接:[题目 1087: A+B for Input-Output Practice (III)](https://www.dotcpp.com/oj/problem1087.html "题目 1……

好写》好写

摘要:参考代码:#include<iostream> using namespace std; int main() {     int a,b;     while(cin >> a >> b)……

P1087 数组解法

摘要:解题思路:我看好多题解没有严格按照输入标准来hhh 其实利用二维数组可以实现题目要求注意事项:goto语句和break语句的使用参考代码:#include<iostream>using namespa……