2015年4月28日

c++生成随机数

摘要: #include #include #include void main(){ int min = 10; int max = 30; srand ( time(NULL) ); int output = min + (rand() % (int)(max - min + ... 阅读全文

posted @ 2015-04-28 09:11 齐文宣 阅读(181) 评论(0) 推荐(0)

导航