C++问题,高手进来
模拟人抽签的过称,共5位同学.如设5位同学a,b,c,d,e...假如抽出c,d,a,e,b................
模拟人抽签的过称,共5位同学.
如设5位同学a,b,c,d,e...假如抽出c,d,a,e,b............. 展开
如设5位同学a,b,c,d,e...假如抽出c,d,a,e,b............. 展开
1个回答
展开全部
#include <iostream>
#include <algorithm>// random_shuffle 函数需要的库
#include <vector>
#include <string>
using namespace std;
int main()
{
string s;
vector<string> random;
cout << "输入名字" << endl;
while(cin >> s){
random.push_back(s);}
random_shuffle(random.begin(), random.end()); //随机排列容器元素的函数
for (vector<string>::iterator ix = random.begin();
ix != random.end(); ++ix){
cout << *ix << " ";}
return 0;
}
另外我不是什么 高手 呵呵
#include <algorithm>// random_shuffle 函数需要的库
#include <vector>
#include <string>
using namespace std;
int main()
{
string s;
vector<string> random;
cout << "输入名字" << endl;
while(cin >> s){
random.push_back(s);}
random_shuffle(random.begin(), random.end()); //随机排列容器元素的函数
for (vector<string>::iterator ix = random.begin();
ix != random.end(); ++ix){
cout << *ix << " ";}
return 0;
}
另外我不是什么 高手 呵呵
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询