标签:sp 文件 log bs c++ nbsp 程序 函数 br
1 #include<stdlib.h> 头文件
2 system("Pause") 防止程序运行结束,直接退出
3 RAND_MAX在此头文件中定义
3 #include<cmath>
4 exp(1.0) 得到自然指数e
5 log()是以自然指数e为底数
6 rand()函数生成0-RAND_MAX之间的整数
7 srand() 为rand()函数设置seed
8 #include <time.h>
9 srand((int)time(0));
10 z = ((double)rand()/RAND_MAX)*(b-a) + a;/*产生区间[a,b]上的随机数*/
标签:sp 文件 log bs c++ nbsp 程序 函数 br
原文地址:http://www.cnblogs.com/ChenAlong/p/4131653.html