题解 1089: A+B for Input-Output Practice (V)

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

筛选

A+B for Input-Output Practice (V) (C++代码)

摘要:解题思路:     此题是在上一题的基础上,改进就可以很容易解决,具体代码如下。注意事项:     主要实在循环中将while(scanf("%d",&t)==1&&t!=0)改为while(t--)……

A+B for Input-Output Practice (V)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a, b,c,sum=0; cin >> c; while (……

A+B for Input-Output Practice (V)

摘要:解题思路:两层for循环,用数组存储相加所需数字注意事项:参考代码:#include<iostream>using namespace std;int main(){ int row, n;//row……

1089A+B(5)(while循环输出)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); while(n!=0) { int m; scanf("%d"……