A+B for Input-Output Practice (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b,c,n; scanf("%d",&n); while((n--)&&scanf("%d",&a)) { c=0; …… 题解列表 2017年07月12日 1 点赞 0 评论 1314 浏览 评分:6.3
A+B for Input-Output Practice (VII) (C语言代码) 摘要:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n\n",a+b); re…… 题解列表 2017年07月12日 0 点赞 0 评论 1148 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b,n; scanf("%d",&n); while (n--) { scanf("%d%d",&a,&b); printf…… 题解列表 2017年07月12日 0 点赞 0 评论 1048 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b ; while(scanf("%d %d",&a,&b)) { if (a==0&&b==0) brea…… 题解列表 2017年07月12日 1 点赞 0 评论 1344 浏览 评分:0.0
A+B for Input-Output Practice (IV) (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b,c; while(scanf("%d",&a)&&a>0) { c=0; while (a--) …… 题解列表 2017年07月12日 0 点赞 1 评论 751 浏览 评分:2.0
A+B for Input-Output Practice (V) (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b,c,n; scanf("%d",&n); while((n--)&&scanf("%d",&a)) { c=0; …… 题解列表 2017年07月12日 0 点赞 0 评论 1224 浏览 评分:0.0
A+B for Input-Output Practice (VI) (C语言代码) 摘要:#include <stdio.h>int main(){ int i,a,num,sum; while(scanf("%d",&a)!=EOF) { sum=0; for(i=0;…… 题解列表 2017年07月12日 1 点赞 2 评论 676 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> main() { int n,a=2,m=0,sn=0; scanf("%d",&n); while(m<n) { sn…… 题解列表 2017年07月12日 0 点赞 0 评论 1000 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; scanf("%d%d%d",&a,&b,&c); max=a; if(b>max…… 题解列表 2017年07月12日 1 点赞 0 评论 992 浏览 评分:9.3