C/C++
yangchun57
骄傲的生活@
展开
-
随机产生N个整数,并对其进行排序,查找……
#include stdlib.h>#include stdio.h>#include time.h> //使用当前时钟做种子#define N 100void Produce(int *dat) //产生N个随机大小的整数...{ int i; srand( (unsigned)time( NULL ) );//初始化随机数 for( i = 0; i N; i++ ) da原创 2007-09-19 12:36:00 · 3965 阅读 · 0 评论 -
计算任意两个日期之间的天数问题
程序代码:#include "stdio.h"int days[2][13]=...{365,31,28,31,30,31,30,31,31,30,31,30,31, 366,31,29,31,30,31,30,31,31,30,31,30,31};int Leap(int year) //判断是否为闰年...{ return ( (ye原创 2007-09-21 14:21:00 · 1433 阅读 · 0 评论