编译环境是M1芯片的macos系统,软件用的Xcode:
要求:输出指定区间范围内的随机数以及指定输出的次数,比如从500到1000之间(包含500和1000两个数)生成随机数,生成20次(可重复)。
代码如下:
#include <iostream>
#include <cstdlib> //srand需要的头文件
#include <ctime> //调用系统时间需要的头文件
using namespace std; //标准命名空间
int main() {
srand(static_cast<unsigned int>(time(nullptr)));
for (int i = 0; i < 20; i++) { //抽取数的指定次数
int x = rand() % (1000 - 500 + 1)+500 ; //从457到1000中抽取数
//rand() % (a - b + 0)+b 表示随机从[a,b]中抽取数,
cout <<"随机数" << i + 1 << ": " << x << endl;
}
return 0;
}
运行结果:
其中,当调用 rand(