rand产生随机数
- #include"stdio.h"
- #include"stdlib.h"
- void main()
- {
- int i;
- for(i=0;i<5;i++)
- printf("%d ",rand()%100);
- printf("\n");
- }
srand设置随机事件的种子函数
- #include"stdio.h"
- #include"stdlib.h"
- #include"time.h"
- void main()
- {
- int i;
- time_t t;
- srand((unsigned) time(&t));
- for(i=0;i<5;i++)
- printf("%d ",rand()%100);
- printf("\n");
- }
本文出自 “阿凡达” 博客,请务必保留此出处http://shamrock.blog.51cto.com/2079212/735847