题解 1088: A+B for Input-Output Practice (IV)

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

筛选

看来我把题想的难了

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

1088A+B(4)(while循环输出)

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

题目 1088: A+B for Input-Output Practice

摘要:解题思路:简单的一道题。定义数组,输入一个数来决定数组包含的数量。循环加和  求出答案。注意事项:1题目是多组数组进行测试的   2每次循环之后要将结果清空再进行下  一次循环。参考代码:#i……

A+B for Input-Output Practice (IV)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,n=0; int a[100]={0}; while(ci……