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

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

筛选

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

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

输入输出格式练习

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

看来我把题想的难了

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