源码:
#include <iostream>
#include<stdlib.h>
#include<time.h>
#define MAXTIMES 20
using namespace std;
double multiple;
double money;
double bet;
double add;
int times;
void betting();
int main() {
srand(time(NULL));
money=1000.0;
while(times<=MAXTIMES){
//TODO
cout<<"你的目前金额为"<<money<<endl;
cout<<"请输入你的注码金额(输入0 all in)"<<endl;
cin>>bet;
if(bet<=money){
if(bet==0){
bet=money;
}
betting();
cout<<"本次下注:"<<bet<<" 返回:"<<add<<" 目前剩余:"<<money<<endl;
}
else{
cout<<"注码不能能大于本金!!"<<endl;
}
}
return 0;
}
void betting(){
money-=bet;
multiple=(double)(rand()%10+5)/10;
add=multiple*bet;
money+=add;
}
说明 :
你的代码实现了一个简单的赌博游戏,其中玩家下注并基于随机数&#x
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 用c++模拟一个赌博游戏
发表评论 取消回复