#include<bits/stdc++.h>
#include<ctime>
#include<cstdlib>
#include <windows.h>
#include <conio.h>
using namespace std;
int generateRandomNumber(int min, int max) {
srand(time(0));
int random_number = rand() % (max - min + 1) + min;
return random_number;
}
struct sb{
string a;
char b;
int heart=100;
int hp=10000;
int sf=0;
};
bool ji(int a){
return a%2==0;
}
bool w(char a,char b){
return a=='a'&&b=='a';
}
int main(){
MessageBox (NULL, "欢迎来到巫师对决!", "温馨提示", MB_OK);
sb p1,p2;
cout<<"请输入玩家p1姓名:";
getline(cin,p1.a);
cout<<"请输入玩家p2姓名:";
getline(cin,p2.a);
cout<<"**********************"<<endl;
cout<<"***老顾客活动来袭!***"<<endl;
cout<<"*首充998可成为青铜VIP*"<<endl;
cout<<"首充1998可成为黄金VIP*"<<endl;
cout<<"首充999998可成为至尊VIP"<<endl;
cout<<"**超级划算!!!!!**"<<endl;
cout<<"******巫师对决战******"<<endl;
cout<<"*按c开始,按其他键退出*"<<endl;
cout<<"**********************"<<endl;
char choose;
c