A+B for Input-Output Practice (III) 题解 摘要:解题思路:不就是加法嘛!弄了个英文就不会了?注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ …… 题解列表 2022年05月07日 0 点赞 0 评论 189 浏览 评分:0.0
编写题解 1087: A+B for Input-Output Practice (III) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b){ …… 题解列表 2022年03月19日 0 点赞 0 评论 205 浏览 评分:0.0
A+B for Input-Output Practice (III 摘要:```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b){ if(a==0&…… 题解列表 2022年03月05日 0 点赞 0 评论 168 浏览 评分:0.0
1087: A+B for Input-Output Practice (III)-java 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2022年02月27日 0 点赞 0 评论 249 浏览 评分:0.0
A+B for Input-Output Practice (III) (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n=0,a,b; while (cin>>a>>b) { …… 题解列表 2017年11月23日 0 点赞 0 评论 719 浏览 评分: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 评论 679 浏览 评分: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 评论 816 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:解题思路:注意事项:参考代码:V#include<stdio.h>int main(){ int a,b,s; while(scanf("%d %d",&a,&b)&&a!=0&&b!=0) { s…… 题解列表 2017年12月09日 0 点赞 0 评论 675 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,s,a; while(scanf("%d",&x)&&x) { s=0; while(x--) …… 题解列表 2017年12月09日 0 点赞 0 评论 671 浏览 评分: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 评论 658 浏览 评分:0.0