摘要: #include <stdio.h>#include <stdlib.h>#include <time.h>int main(void){ int i = 0; srand((unsigned)time(NULL)); //本地时间为种子 while (i<30) { int a = rand() 阅读全文
posted @ 2018-10-08 19:05 DreamerT 阅读(88) 评论(0) 推荐(0) 编辑