文章列表

筛选

排序算法(选择,插入,冒泡)

摘要:#include<stdio.h> #define SWAP(x,y) {int t;t=x;x=y;y=t;} //选择排序法: /* 将要排序的对象最为两部分,一部分是已排序的,一……

10月月赛题解

摘要:大家好,我是本场的月赛出题人Occult闲来无事为C语言网免费贡献了这一套题,不知道大家觉得这套题如何不过就结果而言好像难度略高了,这个锅我背了,一出题就控制不住自己了。前几天正好赶上我外出比赛,于是……

快速排序算法1

摘要:#include<stdio.h> #define SWAP(x,y) {int t;t=x;x=y;y=t;} #define N 10 /* 快速排序算法基本思想: 在数列中选择合适……

1005答案错误为什么

摘要:/*输入一个华氏温度,要求输出摄氏温度。公式为 c=5(F-32)/9,取位2小数。*/#include <stdio.h>int main(){ float c,f;  scanf("%f",&f)……

1202题解

摘要:#include<stdio.h> int main() {    int n,max;      while (scanf("%d",&n)!=EOF)    {       max……

1250题解

摘要:#include<stdio.h> int sushu(int n) { int i; for(i=2;i<n;i++) { if(0 == n%i) return ……

1073题解

摘要:#include <stdio.h> #include <string.h> #include <math.h> //1073 int main() {     int a,b,resul……

1199题解

摘要:#include <stdio.h> #include <stdlib.h> int* sushu(int n) //找出n以内的所有质数 { int i,j,flage = 0,t =……