把命运交给老天!(
2024-05-27 13:07:14
发布于:广东
38阅读
0回复
0点赞
#include <bits/stdc++.h>//难得一见的万能头(
using namespace std;
string a[] = {"榴莲", "苹果", "猕猴桃", "蓝莓"};
int main(){
srand(time(0));
cout << a[rand() % 4];//随机
return 0;
}
这里空空如也
2024-05-27 13:07:14
发布于:广东
#include <bits/stdc++.h>//难得一见的万能头(
using namespace std;
string a[] = {"榴莲", "苹果", "猕猴桃", "蓝莓"};
int main(){
srand(time(0));
cout << a[rand() % 4];//随机
return 0;
}
这里空空如也
提交答案之后,这里将显示提交结果~
有帮助,赞一个