C语言程序设计教程(第三版)课后习题6.11 (C语言代码) 摘要:#include "stdio.h"#include "math.h"main(){ float a; float x=1,x1; scanf("%f",&a); while(fabs(x-x1)>0…… 题解列表 2017年06月16日 1 点赞 0 评论 1034 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:解题思路: 使用数组,输入三个整数,然后通过冒泡法,进行从小到大的有序排列,最后输出数组。注意题目要求空格隔开。代码如下:#include<stdio.h> #define xx 3 int…… 题解列表 2017年06月16日 2 点赞 0 评论 1109 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>double fact(int n){ int i; long f=1; for(i=2;i<=n;i++) { f=f*i…… 题解列表 2017年06月16日 0 点赞 0 评论 805 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>#include <math.h> int main(int argc, char *argv[]) { int x; dou…… 题解列表 2017年06月16日 0 点赞 0 评论 1139 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>void cotf(int C){ int C2 = 150,F; for(C; C <= C2; C = (C + 5))…… 题解列表 2017年06月16日 0 点赞 0 评论 932 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>#include <math.h>int main(int argc, char *argv[]) { int n, max…… 题解列表 2017年06月16日 1 点赞 0 评论 1859 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:#include<stdio.h>#include<string.h>int main() { char a[100]; int i,size; gets(a); size=strlen(a); …… 题解列表 2017年06月16日 1 点赞 0 评论 855 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include <stdio.h>int main() {int n, i = 0, j = 0, k = 0;scanf("%d",&n);while(n > 0)//判断n是否符合条件{if(n…… 题解列表 2017年06月21日 0 点赞 3 评论 435 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:#include<studio.h>main(){ int a=0 ,b=0; scanf('%d %d',&a,&b); …… 题解列表 2017年06月16日 0 点赞 0 评论 777 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:#include <stdio.h>int main(){ float m,n; float b = 1000; scanf("%f%f",&m,&n); for(int i = 0; i <…… 题解列表 2017年06月16日 1 点赞 0 评论 769 浏览 评分:0.0