源码:

#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

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部