A+B for Input-Output Practice (VII) (C语言代码) 摘要:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n\n",a+b); re…… 题解列表 2017年07月12日 0 点赞 0 评论 924 浏览 评分:0.0
A+B for Input-Output Practice (VII) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> main() { int a,b; while(scanf("%d%d",&a,&b)==2) { printf("%d\…… 题解列表 2017年08月01日 1 点赞 1 评论 1500 浏览 评分:8.0
A+B for Input-Output Practice (VII) (C语言代码) 摘要:注意事项:初始的那个代码!!格式坑死人:followed by a blank line。参考代码:#include<stdio.h>int main(){ int a,b; while(…… 题解列表 2017年10月18日 0 点赞 0 评论 660 浏览 评分:0.0
Manchester- A+B for Input-Output Practice (VII) 摘要:解题思路:在1085 题的基础上,再输出一个换行符;下面(1085)#include<stdio.h> int main() { int a,b; while(scanf("%d%d"…… 题解列表 2017年11月25日 16 点赞 0 评论 1107 浏览 评分:8.0
WU-A+B for Input-Output Practice (VII) (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int a,b,i=0; while(scanf("%d%d",&a,&b)) { i++; if(…… 题解列表 2017年12月16日 1 点赞 0 评论 769 浏览 评分:0.0
A+B for Input-Output Practice (VII) (C语言代码) 摘要:#include <stdio.h> int main(void) { int a, b; while (scanf("%d %d", &a, &b) != EOF) { …… 题解列表 2017年12月23日 0 点赞 0 评论 768 浏览 评分:0.0
A+B for Input-Output Practice (VII) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int a,b; while (~scanf("%d %d",…… 题解列表 2017年12月28日 0 点赞 0 评论 545 浏览 评分:0.0
优质题解 ACM基本输入输出(大数加法) (C/C++语言代码) 摘要:解题思路:如果想要通过系统测试,下面这段简单的代码足矣:#include <stdio.h> int main() { int a,b; while(~scanf("%d%d",&a,&b…… 题解列表 2019年01月06日 10 点赞 3 评论 2664 浏览 评分:9.0
番16 A+B for Input-Output Practice (VII) (C++代码) 摘要:解题思路: c++训练,注意要多输出一个空行 注意事项:参考代码:/*Your task is to Calculate a  题解列表 2019年04月07日 0 点赞 0 评论 446 浏览 评分:9.9
A+B for Input-Output Practice (VII) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d %d",&a,&b)==2){ printf("%d\n\n…… 题解列表 2019年04月12日 0 点赞 0 评论 324 浏览 评分:0.0