摘要: 生成骰子数 #include <stdio.h> #include <time.h> //time() #include <stdlib.h> //srand(), rand() void main() { srand(time(NULL)); for(int i = 0; i < 10; ++i) 阅读全文
posted @ 2020-06-30 10:26 profesor 阅读(172) 评论(0) 推荐(0) 编辑