A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100],n,i,sum; while((scanf("%d",&n)!=EOF)&&(…… 题解列表 2022年11月02日 0 点赞 0 评论 76 浏览 评分:0.0
“扮猪吃老虎”题 摘要:解题思路:题目看起来很难,其实不要别它迷惑了,每一行第一个数是后面输入数字的个数,先接受一个这个数,如果等于0结束,不等于0的话继续接收数据,很简单的注意事项:这个题并不能实现输入几行数据,再返回结果…… 题解列表 2022年10月25日 0 点赞 1 评论 187 浏览 评分:9.9
A+B for Input-Output Practice (IV)(怀氏c++) 摘要:解题思路:4(5)开头就是就前4(5)个数的和,用两个循环解决注意事项:参考代码:#include<bits/stdc++.h>using namespace std; int main(){ …… 题解列表 2022年10月24日 0 点赞 1 评论 219 浏览 评分:9.9
新手写的 所以对新手很友好 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n; while (scanf("%d", &n) ) { …… 题解列表 2022年09月30日 0 点赞 0 评论 343 浏览 评分:4.7
1088: A+B for Input-Output Practice (IV) 摘要:```cpp #include using namespace std; int main() { int sum,n,x; while(cin>>n&&n) {…… 题解列表 2022年08月31日 0 点赞 0 评论 482 浏览 评分:9.9
1088——————A+B for Input-Output Practice (IV) 摘要:题目:1088: A+B for Input-Output Practice (IV) **题目描述** Your task is to Calculate the sum of some int…… 题解列表 2022年08月20日 0 点赞 0 评论 283 浏览 评分:0.0
一个用来水题的思路(C语言实现) 摘要:## 这是一个用来水题的思路 - 非常容易理解,毕竟有没有内存限制和运行时间的限制,我也就懒得考虑O(n)了,希望对各位道友有所帮助 - **代码如下:** ```c #include in…… 题解列表 2022年07月09日 0 点赞 0 评论 125 浏览 评分:0.0
编写题解 1088: A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:while True: sum = 0 lis = list(map(int,input().split())) if lis[0] == 0: …… 题解列表 2022年06月01日 0 点赞 0 评论 99 浏览 评分:0.0
用python投机取巧的方法 摘要:解题思路:注意事项:参考代码:#n=input()li=list(map(int,input().split()))print(sum(li[1:]))while len(li)!=0: li=…… 题解列表 2022年05月26日 0 点赞 0 评论 179 浏览 评分:0.0
1088: A+B for Input-Output Practice (IV) 摘要:解题思路:先输入一个数后,再输入几个数,算出和后输出。注意事项:记得“0”时推出循环!参考代码:#include<iostream> using namespace std; int main()…… 题解列表 2022年05月21日 0 点赞 0 评论 178 浏览 评分:9.0