文章列表

筛选

10月月赛题解

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

快速排序算法1

摘要:#include<stdio.h>#define SWAP(x,y) {int t;t=x;x=y;y=t;}#define&……

1005答案错误为什么

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

1202题解

摘要:#include<stdio.h>int main(){   int n,max;&nbs……

1250题解

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

1073题解

摘要:#include <stdio.h>#include <string.h>#include <math.h>/……

1199题解

摘要:#include <stdio.h>#include <stdlib.h>int* sushu(int ……