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 评论 680 浏览 评分:0.0
Manchester- A+B for Input-Output Practice (I) 摘要:解题思路:输入一对整数数,以空格隔开;输出它们的和;默认为测试文件结尾结束;注意事项:题目没有说明结束方式,默认为测试文件结尾结束;参考代码:#include<stdio.h> int main()…… 题解列表 2017年11月24日 23 点赞 5 评论 1877 浏览 评分:9.3
A+B for Input-Output Practice (I) (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b; while (cin>>a>>b) cout<<…… 题解列表 2017年11月23日 0 点赞 0 评论 732 浏览 评分: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 评论 769 浏览 评分:0.0
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++代码) 摘要:解题思路:直接点提交就好了hhhhhhhh注意事项:这还要注意点什么,,大哥,你就别自己改了好吧。。参考代码:#include<iostream> using namespace std; int…… 题解列表 2017年07月28日 3 点赞 5 评论 1570 浏览 评分:4.7
A+B for Input-Output Practice (I) (C语言代码) 摘要:详情黄老师ACM入门教程…… 题解列表 2017年06月10日 3 点赞 1 评论 1329 浏览 评分:2.7