
C++
「已注销」
欢迎关注微信公众号【我吃你家米了】,回复关键字【资料】获取各种学习资源
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Windows多线程与信号机制
友链https://mp.weixin.qq.com/s/AUvO7cC9335-BOa4Ddwpsw原创 2020-11-01 19:25:49 · 427 阅读 · 0 评论 -
C++ 产生指定范围内的随机数
生成1~6之间的随机数#include <stdio.h>#include <stdlib.h>#include <time.h>#include <iostream>using namespace std;int main(){ int i,result; srand((int)time(0));//利用系统时间产生随机序列的...原创 2019-11-15 16:51:24 · 1973 阅读 · 0 评论