C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:#include<stdio.h>int main(){ printf("**************************\n"); printf("Hello World!\…… 题解列表 2017年07月01日 0 点赞 0 评论 808 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:#include<stdio.h>int main(){ printf("**************************\n") printf("Hello world\n"…… 题解列表 2017年07月01日 0 点赞 1 评论 431 浏览 评分:0.0
C二级辅导-公约公倍 (C语言代码) 摘要:#include<stdio.h>int main(){ int m,n,k; scanf("%d%d",&m,&n); int i=m,j=n; if(m>n) {m=m+n;n=m-n;m=m-n…… 题解列表 2017年07月01日 0 点赞 0 评论 911 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { char a[40]; int b,e,f; int *c; …… 题解列表 2017年06月30日 1 点赞 0 评论 1061 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:#include<stdio.h> int main() { int a,b; scanf("%d",&a); if (a<=100000) b=a*0.1; …… 题解列表 2017年06月30日 0 点赞 0 评论 1122 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:#include<stdio.h> int main() { int n,a,b,c,d,e;//n为数字,abcde表示数字 scanf("%d",&n); e=n…… 题解列表 2017年06月30日 110 点赞 35 评论 5449 浏览 评分:6.0
C语言训练-亲密数 (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>int main(){ int n,a,i,j,b[10],s=0;for(i=2;i<3000;i++){ int s1=0…… 题解列表 2017年06月30日 1 点赞 1 评论 1401 浏览 评分:9.0
拆分位数 (C语言代码) 摘要:#include<stdio.h> int main() { int a,b,c,x; scanf("%d",&x); a =  题解列表 2017年06月30日 19 点赞 3 评论 1803 浏览 评分:9.3
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h>int main(){ int a[10],b=0,c[10],i=0,min,t,j,k=0; while(i<10) { scanf("…… 题解列表 2017年06月30日 0 点赞 0 评论 848 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:#include <stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c3,&c4,&c5); c1+=4; c…… 题解列表 2017年06月29日 1 点赞 0 评论 1157 浏览 评分:0.0