我正在尝试编写一个c ++代码,该代码从用户获取输入并存储在数组中,然后以4个为一组随机打印元素。
下面是我的代码。
#include<iostream>
using namespace std;
int main(){
int i; int arr[5];
cout << "Enter some numbers" << endl;
for(i=0; i<5; i++){
cin >> arr[i];
}
for(int k=0; k<5; k++){
cout << arr[k];
cout << " ";
}
cout << " " << endl;
}
答案 0 :(得分:2)
如果您只想从4个或更多数字的池中获取四个随机数,那么一个简单的方法就是每次都将所有条目混洗并返回前4个。