1091: A+B for Input-Output Practice (VII) (C语言) 摘要:```c #include int main() { int a, b; while(scanf("%d%d", &a, &b) != EOF) { …… 题解列表 2023年04月10日 0 点赞 0 评论 189 浏览 评分:9.9
A+B for Input-Output Practice (VII) 摘要:#include<stdio.h> int main() { int a,b; while(scanf("%d %d",&a,&b)!=EOF) { printf(…… 题解列表 2022年07月18日 0 点赞 0 评论 465 浏览 评分:9.9
番16 A+B for Input-Output Practice (VII) (C++代码) 摘要:解题思路: c++训练,注意要多输出一个空行 注意事项:参考代码:/*Your task is to Calculate a  题解列表 2019年04月07日 0 点赞 0 评论 581 浏览 评分:9.9
A+B for Input-Output Practice (VII)-题解(C语言代码)原作者@cpython3 摘要:原链接为c++,修改为了c语言,供参考https://blog.dotcpp.com/a/57050 ```c #include #include char* BigDataAdd(cha…… 题解列表 2020年08月23日 0 点赞 0 评论 651 浏览 评分:9.2
优质题解 ACM基本输入输出(大数加法) (C/C++语言代码) 摘要:解题思路:如果想要通过系统测试,下面这段简单的代码足矣:#include <stdio.h> int main() { int a,b; while(~scanf("%d%d",&a,&b…… 题解列表 2019年01月06日 10 点赞 3 评论 2821 浏览 评分:9.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 评论 1554 浏览 评分:8.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 评论 1147 浏览 评分:8.0
A+B for Input-Output Practice (VII)-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ int a,b; while(scanf("%d%d",&a,&b)!=E…… 题解列表 2020年09月10日 0 点赞 0 评论 389 浏览 评分:4.7
简单明了,看了就懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while (scanf("%d %d",&a,&b)!=EOF) { …… 题解列表 2022年12月24日 0 点赞 0 评论 139 浏览 评分:0.0
A+B for Input-Output Practice (VII)(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d %d",&a,&b)!=EOF) { …… 题解列表 2022年11月03日 0 点赞 0 评论 166 浏览 评分:0.0