我的程序之路
staffxiang
全部博文(29)
进阶(3)
基础(9)
深入理解计算机系(0)
Ubuntu(4)
2011年(1)
2008年(28)
wobuguaj
che88she
kongyu68
weiweish
95195098
my0929my
xialv199
KenendZ
xylxz
分类: C/C++
2008-10-06 21:59:24
#include <stdio.h>#include <sys/timeb.h>#include <WINSOCK2.H>int hsRandom(void);void hsGetTimesOfDay(struct timeval * , void *);int main(void){ printf("the Random number is %d\n",hsRandom()); return 0;}int hsRandom(void){ timeval tv; hsGetTimesOfDay(&tv,NULL); long seed = tv.tv_sec + tv.tv_usec; srand(seed); return rand();}void hsGetTimesOfDay(struct timeval *tp, void *tz){ struct _timeb timebuffer; _ftime(&timebuffer); tp->tv_sec = timebuffer.time; tp->tv_usec = timebuffer.millitm*1000;}
上一篇:好文章
下一篇:[收藏]绝对能够测试你的C语言功力的几个问题
登录 注册