编写题解 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
一个用来水题的思路(C语言实现) 摘要:## 这是一个用来水题的思路 - 非常容易理解,毕竟有没有内存限制和运行时间的限制,我也就懒得考虑O(n)了,希望对各位道友有所帮助 - **代码如下:** ```c #include in…… 题解列表 2022年07月09日 0 点赞 0 评论 125 浏览 评分:0.0
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
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
新手写的 所以对新手很友好 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n; while (scanf("%d", &n) ) { …… 题解列表 2022年09月30日 0 点赞 0 评论 343 浏览 评分:4.7
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
“扮猪吃老虎”题 摘要:解题思路:题目看起来很难,其实不要别它迷惑了,每一行第一个数是后面输入数字的个数,先接受一个这个数,如果等于0结束,不等于0的话继续接收数据,很简单的注意事项:这个题并不能实现输入几行数据,再返回结果…… 题解列表 2022年10月25日 0 点赞 1 评论 187 浏览 评分:9.9
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
A+B for Input-Output Practice (IV) 上才艺,新手入 摘要:解题思路:注意事项:sum每次赋初始值参考代码:#include<stdio.h>int main(){ int n,sum=0; while(scanf("%d",&n)&&n){ int a[n…… 题解列表 2022年12月19日 0 点赞 0 评论 53 浏览 评分:0.0
编写题解 1088: A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:/*输入格式输入包含多个测试用例。每个测试用例包含一对整数 a 和 b,每行一对整数。包含 0 0 的测试用例将终止输入,并且不会处理此测试用例。 输出格式对于每对输入…… 题解列表 2022年12月26日 0 点赞 0 评论 63 浏览 评分:0.0