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 评论 1243 浏览 评分:0.0
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 评论 1273 浏览 评分:0.0
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 评论 1380 浏览 评分: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 评论 1404 浏览 评分: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 评论 1062 浏览 评分:0.0
1085 我爱你C语言简洁扼要 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d %d",&a,&b)) {printf("%d\n",a+…… 题解列表 2021年11月05日 0 点赞 0 评论 666 浏览 评分: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 评论 985 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i,j,n; while(scanf("%d%d",&i,&j)==2)…… 题解列表 2019年05月24日 0 点赞 0 评论 755 浏览 评分:0.0
A+B for Input-Output Practice (I)-题解(C语言代码) 摘要: #include void main() { int a[100],b[100]; int i=0,j; while((scanf("%…… 题解列表 2019年08月04日 0 点赞 0 评论 1122 浏览 评分: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 评论 1056 浏览 评分:0.0