A+B for Input-Output Practice (III) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; int n=1 ; while(n) { scanf("%d %d",&a,&b);//输…… 题解列表 2018年11月14日 1 点赞 0 评论 346 浏览 评分:0.0
A+B for Input-Output Practice (III)-题解(C语言代码) 摘要:```c #include int main() { int a,b; while(scanf("%d%d",&a,&b) == 2 ) { if( a == 0 && b == …… 题解列表 2019年07月24日 0 点赞 0 评论 564 浏览 评分:0.0
编写题解 1087: A+B for Input-Output Practice (III) 摘要:解题思路:注意事项:参考代码:while True: sum = 0 a = list(map(int,input().split())) if a[0]==0 and a[1]==…… 题解列表 2022年06月01日 0 点赞 0 评论 129 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:解题思路:注意事项:参考代码:int main(int argc, char* argv[]){int a,b;while(scanf("%d %d",&a,&b)!=EOF){ if(a==0 &&…… 题解列表 2018年12月03日 4 点赞 0 评论 535 浏览 评分:0.0
A+B for Input-Output Practice (III)-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b,n,i; for(i=0;i<3;i++) { scanf("%d%d…… 题解列表 2021年01月30日 0 点赞 0 评论 124 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,n; while(scanf("%d %d",&a,&b)!=EOF&&a!=0|…… 题解列表 2017年12月13日 0 点赞 0 评论 578 浏览 评分:0.0
1087: A+B for Input-Output Practice (III) 摘要:a 和 b 同时为 0 时跳出循环。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; w…… 题解列表 2021年12月15日 0 点赞 0 评论 87 浏览 评分:0.0
1087A+B(3)(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long long a,b; while(scanf("%lld%lld",&a,&b)) { if(a==0…… 题解列表 2024年05月29日 0 点赞 0 评论 78 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d",&a,&b)){ if((a+b)==0)break; …… 题解列表 2017年10月18日 0 点赞 0 评论 691 浏览 评分:0.0
A+B for Input-Output Practice (III)-题解(C语言代码) 摘要:解题思路:输入......输出......注意事项:当输入的 a 为 0 且 b 也为 0 时结束程序,否则继续循环,也就是:!(a == 0 && b == 0) //或者 !…… 题解列表 2021年02月15日 0 点赞 0 评论 113 浏览 评分:0.0