016 生成随机数
Posted huafan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了016 生成随机数相关的知识,希望对你有一定的参考价值。
#include "stdafx.h" #include <stdlib.h> #include <time.h> // 生成随机数 - 100到200 int main(int argc, char *argv[], char **envp) srand((unsigned)time(NULL)); int nLoop = 0; while (nLoop < 20) int i = 100 + rand() % 100; printf("%d\n", i); ++nLoop; return 0;
以上是关于016 生成随机数的主要内容,如果未能解决你的问题,请参考以下文章