A+B for Input-Output Practice (III) (C++代码) 摘要:参考代码:#include <iostream> using namespace std; int main() { int a, b; while (cin >> a >…… 题解列表 2018年02月01日 0 点赞 0 评论 819 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:解题思路:输入a,b,都为0时结束循环当输入结束后,判断a,b是否都等于0注意事项: 也可写成!(a==0&&b==0)参考代码:#include <stdio.h> int main(){ int…… 题解列表 2018年05月28日 0 点赞 0 评论 357 浏览 评分:0.0
A+B for Input-Output Practice (III) 题解 摘要:解题思路:不就是加法嘛!弄了个英文就不会了?注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ …… 题解列表 2022年05月07日 0 点赞 0 评论 163 浏览 评分:0.0
A+B for Input-Output Practice (III)-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int a,b; while(1){ cin>>a>>b; …… 题解列表 2021年02月05日 0 点赞 0 评论 185 浏览 评分:0.0
A+B for Input-Output Practice (III)C语言 摘要:#include<stdio.h> int main() { int a, b; while (scanf("%d%d", &a, &b)!=EOF) { if (a == 0…… 题解列表 2023年06月05日 0 点赞 0 评论 64 浏览 评分:0.0
题解 1087: A+B for Input-Output Practice (III) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b,c=0; while(~scanf("%d %d",&a,&b)) …… 题解列表 2022年02月22日 0 点赞 0 评论 216 浏览 评分: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…… 题解列表 2017年10月30日 0 点赞 0 评论 570 浏览 评分:0.0
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 评论 347 浏览 评分:0.0
利用if对输出结果进行判断 摘要:解题思路:利用if判断输出结果即可注意事项:参考代码:#include<stdio.h>int main(){ int a,b,n; while(~scanf("%d%d", &a, &b…… 题解列表 2022年05月19日 0 点赞 0 评论 109 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,s[100],i=0,j; while(scanf("%d %d",&a,&b)==…… 题解列表 2018年04月05日 0 点赞 0 评论 489 浏览 评分:0.0