请用C加加解决在一个数组中随机选出三位数并写出详细代码
时间: 2023-03-19 22:24:48 浏览: 133
生成随机数的C语言代码
很高兴为您解答,C++中随机选出三位数的代码可以这样:
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
int a[3];
srand((unsigned)time(NULL));
for(int i=0; i<3; i++)
{
a[i] = rand() % 10;
cout << a[i] << " ";
}
cout << endl;
return 0;
}
阅读全文