A+B from beiqiao(C++) 摘要:#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b) //编译器…… 题解列表 2022年01月23日 0 点赞 0 评论 140 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:我写出来两个比较简单的代码,有任何问题都可以在下面留言哦!参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d"…… 题解列表 2018年03月03日 0 点赞 0 评论 613 浏览 评分:0.0
A+B for Input-Output Practice (I)-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int a,b,c,d; int sum; scanf("%d%d",&…… 题解列表 2020年09月14日 0 点赞 0 评论 191 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)==2) { …… 题解列表 2018年10月13日 0 点赞 0 评论 362 浏览 评分:0.0
A+B for Input-Output Practice (I)-题解(C语言代码) 摘要: #include int main() { int a,b; while(~scanf("%d%d", &a, &b)) { printf("%d\n",a+b);…… 题解列表 2020年02月06日 0 点赞 0 评论 346 浏览 评分:0.0
A+B for Input-Output Practice (I) (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class f10850 { public static void main(String[] ar…… 题解列表 2018年05月14日 0 点赞 0 评论 436 浏览 评分:0.0
A+B for Input-Output Practice (I) 摘要: ```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b) cout…… 题解列表 2022年03月05日 0 点赞 0 评论 132 浏览 评分:0.0
A+B for Input-Output Practice (I)-题解(Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Scann…… 题解列表 2020年03月17日 0 点赞 0 评论 350 浏览 评分:0.0
1085: A+B for Input-Output Practice (I) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)==2) printf("%d\n",a…… 题解列表 2021年03月01日 0 点赞 0 评论 105 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){ int a,b; while(scanf("%d %d",&a,&b)==2) printf("%d",a+b); re…… 题解列表 2017年10月27日 0 点赞 0 评论 603 浏览 评分:0.0