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 评论 769 浏览 评分: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)-题解(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) 摘要:解题思路:EOF表示为文件结束符注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while (scanf("%d %d",&a,&b)!=E…… 题解列表 2022年11月01日 0 点赞 0 评论 76 浏览 评分: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
A+B for Input-Output Practice (I) (C语言代码)水题 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) { printf("%d…… 题解列表 2019年05月18日 0 点赞 0 评论 366 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d %d",&a,&b)) { …… 题解列表 2018年08月27日 3 点赞 0 评论 441 浏览 评分: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