摘要: #include<stdio.h>#include<stdlib.h>#include<time.h> int main(void){// 随机产生雷的个数 (最多5个) int numBom = -1; srand(time(0)); numBom = rand() % 5 + 1;// 产生雷的 阅读全文
posted @ 2016-06-27 00:26 sarah_lxq 阅读(143) 评论(0) 推荐(0) 编辑