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

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

筛选

A+B for Input-Output Practice (IV)

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

看来我把题想的难了

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

ACM基本输入输出 (四) (C语言代码)

摘要:解题思路:外层while循环负责的是不断的输入N,当N=0时,跳出此层while循环。内层循环是判断输入相加的数的个数。sum负责累加这些数。注意事项:参考代码:#include <stdio.h> ……