排序算法(选择,插入,冒泡) 摘要:#include<stdio.h> #define SWAP(x,y) {int t;t=x;x=y;y=t;} //选择排序法: /* 将要排序的对象最为两部分,一部分是已排序的,一…… 文章列表 2017年10月29日 6 点赞 0 评论 1074 浏览 评分:0.0
10月月赛题解 摘要:大家好,我是本场的月赛出题人Occult闲来无事为C语言网免费贡献了这一套题,不知道大家觉得这套题如何不过就结果而言好像难度略高了,这个锅我背了,一出题就控制不住自己了。前几天正好赶上我外出比赛,于是…… 文章列表 2017年10月31日 13 点赞 1 评论 611 浏览 评分:9.9
快速排序算法1 摘要:#include<stdio.h> #define SWAP(x,y) {int t;t=x;x=y;y=t;} #define N 10 /* 快速排序算法基本思想: 在数列中选择合适…… 文章列表 2017年11月02日 1 点赞 0 评论 1187 浏览 评分:0.0
1005答案错误为什么 摘要:/*输入一个华氏温度,要求输出摄氏温度。公式为 c=5(F-32)/9,取位2小数。*/#include <stdio.h>int main(){ float c,f; scanf("%f",&f)…… 文章列表 2017年11月03日 1 点赞 1 评论 2037 浏览 评分:0.0
1202题解 摘要:#include<stdio.h> int main() { int n,max; while (scanf("%d",&n)!=EOF) { max…… 文章列表 2017年11月03日 2 点赞 0 评论 870 浏览 评分:0.0
1250题解 摘要:#include<stdio.h> int sushu(int n) { int i; for(i=2;i<n;i++) { if(0 == n%i) return …… 文章列表 2017年11月03日 2 点赞 0 评论 726 浏览 评分:0.0
1073题解 摘要:#include <stdio.h> #include <string.h> #include <math.h> //1073 int main() { int a,b,resul…… 文章列表 2017年11月05日 1 点赞 0 评论 871 浏览 评分:0.0
1074(纳闷了,答案错误,求指教) 摘要:#include <stdio.h> #include <string.h> #include <math.h> int main() { int i,length,num=0,n=0; …… 文章列表 2017年11月05日 1 点赞 2 评论 445 浏览 评分:0.0
1199题解 摘要:#include <stdio.h> #include <stdlib.h> int* sushu(int n) //找出n以内的所有质数 { int i,j,flage = 0,t =…… 文章列表 2017年11月06日 0 点赞 0 评论 898 浏览 评分:0.0