A+B for Input-Output Practice (I) (C语言代码) 摘要:详情黄老师ACM入门教程…… 题解列表 2017年06月10日 3 点赞 1 评论 1329 浏览 评分:2.7
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
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
Manchester- A+B for Input-Output Practice (I) 摘要:解题思路:输入一对整数数,以空格隔开;输出它们的和;默认为测试文件结尾结束;注意事项:题目没有说明结束方式,默认为测试文件结尾结束;参考代码:#include<stdio.h> int main()…… 题解列表 2017年11月24日 23 点赞 5 评论 1879 浏览 评分:9.3
A+B for Input-Output Practice (I) (C语言代码) 摘要:#include<stdio.h> int main() { int a,b; while(scanf("%d%d",&a,&b)==2) printf("%d\n",a+b); …… 题解列表 2017年11月28日 1 点赞 0 评论 681 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:1 输入两个数据2 求和3 输出注意事项:注意数据类型和转换说明符的对应参考代码:#include<stdio.h>int main(){ int a,b; printf("input tw…… 题解列表 2017年11月29日 1 点赞 0 评论 696 浏览 评分:0.0
WU-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…… 题解列表 2017年12月15日 2 点赞 0 评论 1608 浏览 评分:7.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<stdio.h>int main(){ int a,b; while(scanf("%d%d"…… 题解列表 2018年03月03日 0 点赞 0 评论 613 浏览 评分:0.0