编写题解 1085: A+B for Input-Output Practice (I) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while (scanf("%d %d",&a,&b)!=EOF) { …… 题解列表 2022年03月19日 0 点赞 0 评论 157 浏览 评分:0.0
。。。最快。。。提交时的原代码直接提交。。 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { 见提交时的原代码。 return 0; }…… 题解列表 2019年02月08日 1 点赞 0 评论 823 浏览 评分:0.0
1085: A+B for Input-Output Practice (I) 摘要:无脑打印,没啥可说的。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; while(ci…… 题解列表 2021年12月15日 0 点赞 0 评论 134 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c,d,e;scanf("%d%d",&a,&b);scanf("%d%d",&c,&d);e=a…… 题解列表 2017年10月30日 0 点赞 0 评论 770 浏览 评分:0.0
A+B for Input-Output Practice (I)-题解(C++代码) 摘要:解题思路: 为避免题目可能的一些坑(比如输入数字大于int表示的范围),特地使用了long long int注意事项: #define 语句 可以 将代码中 LL 换成 l…… 题解列表 2020年09月10日 0 点赞 0 评论 351 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) printf…… 题解列表 2018年08月23日 0 点赞 0 评论 484 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:#include<stdio.h>int main(){int a,bscanf(''%d,%d'',&a,&b);printf(''%d,/…… 题解列表 2017年12月17日 0 点赞 0 评论 549 浏览 评分:0.0
A+B for Input-Output Practice (I) 题解 摘要:解题思路:不就是加法嘛!弄了个英文就不会了?注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ …… 题解列表 2022年05月07日 0 点赞 0 评论 166 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; while(scanf("%d %d",&n,&m)!=EOF) { printf("%d\…… 题解列表 2019年04月25日 0 点赞 0 评论 294 浏览 评分:0.0
A+B for Input-Output Practice (I)-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b; while(~scanf("%d%d", &a, &b))prin…… 题解列表 2021年01月30日 0 点赞 0 评论 162 浏览 评分:0.0