註冊
登錄
論壇
搜索
幫助
導航
私人消息 (0)
公共消息 (0)
系統消息 (0)
好友消息 (0)
帖子消息 (0)
種子論壇 | 高雄市資訊培育協會學員討論區
»
結訓課程 (青少年程式設計班)
»
C++(六1530)
» 賽馬程式 (六)
返回列表
發帖
發短消息
加為好友
陳品肇
當前離線
UID
68037
帖子
746
精華
0
積分
0
閱讀權限
100
在線時間
277 小時
註冊時間
2018-1-25
最後登錄
2022-4-23
版主
1
#
跳轉到
»
倒序看帖
打印
字體大小:
t
T
陳品肇
發表於 2019-1-4 23:40
|
只看該作者
賽馬程式 (六)
1. 比對比賽結果與玩家下注, 判斷玩家贏了錢還是輸了錢.
2. 對變數balance做加減, 使可用餘額會隨著玩家輸贏而增減.
規則如下:
若最後勝出的選手與玩家下注相同, 玩家贏得下注金3倍的錢.
反之, 玩家損失下注金.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1,balance=0,winner;
re1:
int a=0, b=0, c=0, d=0, r, option, buyin, bet;
system("cls");
cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
cout<<"◆"<<endl;
cout<<"★"<<endl;
cout<<"▲"<<endl;
cout<<"●"<<endl;
cout<<endl;
cout<<"可用餘額: "<<balance<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
cin>>option;
if(option==1)
{
cout<<"買入: ";
cin>>buyin;
balance+=buyin; //balance=balance+buyin
goto re1;
}else if(option==2)
{
if(balance==0)
{
cout<<"可用餘額不足! 請先買入!"<<endl<<endl;
system("pause");
goto re1;
}
cout<<"下注: ";
cin>>bet;
if(bet>balance)
{
cout<<"可用餘額不足! 請先買入!"<<endl<<endl;
system("pause");
goto re1;
}else
{
cout<<endl<<"(1)◆ (2)★ (3)▲ (4)● 請選擇: ";
cin>>option;
cout<<"比賽即將開始..."<<endl<<endl;
system("pause");
}
}else if(option==3)
{
goto end;
}else
{
cout<<"輸入錯誤!"<<endl;
system("pause");
goto re1;
}
system("cls");
srand(time(NULL));
while(a!=75 && b!=75 && c!=75 && d!=75)
{
r=rand()%4; //產生0~3之隨機亂數
if(r==0)
a++;
else if(r==1)
b++;
else if(r==2)
c++;
else
d++;
cout<<"比賽進行中"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"◆"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"★"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"▲"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"●"<<endl;
system("cls");
}
cout<<"比賽結束! 由 ";
if(a==75)
{
cout<<"◆";
winner=1;
}
else if(b==75)
{
cout<<"★";
winner=2;
}
else if(c==75)
{
cout<<"▲";
winner=3;
}
else
{
cout<<"●";
winner=4;
}
cout<<" 先馳得點!"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"◆"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"★"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"▲"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"●"<<endl<<endl;
if(option==winner)
{
cout<<"贏了"<<bet*3<<"元!"<<endl;
balance+=bet*3;
}else
{
cout<<"損失"<<bet<<"元!"<<endl;
balance-=bet;
}
system("pause");
n++;
goto re1;
end:
system("pause");
return 0;
}
複製代碼
附件:
您需要
登錄
才可以下載或查看附件。沒有帳號?
註冊
收藏
分享
發短消息
加為好友
蔡依宸
當前離線
UID
68038
帖子
467
精華
0
積分
0
閱讀權限
10
在線時間
108 小時
註冊時間
2018-1-25
最後登錄
2022-12-5
新手上路
2
#
蔡依宸
發表於 2019-1-5 16:44
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1,money=0;
re1:
int a=0, b=0, c=0, d=0, r,option,winer,buying,bet;
system("cls");
cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
cout<<"◆"<<endl;
cout<<"★"<<endl;
cout<<"▲"<<endl;
cout<<"●"<<endl<<endl;
cout<<"可用餘額: "<< money<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
cin>>option;
if(option==1) //選擇買入多少籌碼
{
cout<<"買入:";
cin>>buying;
money = money + buying; // 原始的餘額加上買入的籌碼
goto re1;
}else if(option==2)
{
if(money==0) //一開始就沒有餘額
{
cout<<"可用餘額不足!請先買入!"<<endl;
system("pause");
goto re1;
}
cout<<"下注:";
cin>> bet;
if(bet>money) //餘額< 下注金額
{
cout<<"可用餘額不足!請先買入!"<<endl;
system("pause");
goto re1;
}else
{
dog:
cout<<"(1)◆(2)★(3)▲(4)● 請選擇: "<<endl;
cin>>option;
if(option>4)
{
cout<<"你選錯了"<<endl;
system("pause");
goto dog;
}
cout<<"比賽即將開始..."<<endl<<endl;
system("pause");
}
}else if(option==3)
{
goto end;
}else
{
cout<<"輸入錯誤!!"<<endl;
system("pause");
goto re1;
}
system("cls");
srand(time(NULL));
while(a!=75 && b!=75 && c!=75 && d!=75)
{
r=rand()%4; //產生0~3之隨機亂數
if(r==0)
a++;
else if(r==1)
b++;
else if(r==2)
c++;
else
d++;
cout<<"比賽進行中"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"◆"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"★"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"▲"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"●"<<endl;
system("cls");
}
// 比賽結束時 第一名的馬
cout<<"比賽結束! 由 ";
if(a==75)
{
cout<<"◆";
winer=1;
}
else if(b==75)
{
cout<<"★";
winer=2;
}
else if(c==75)
{
cout<<"▲";
winer=3;
}
else
{
cout<<"●";
winer=4;
}
cout<<" 先馳得點!"<<endl;
// 印出最後4匹馬的結果
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"◆"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"★"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"▲"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"●"<<endl;
if(winer==option)
{
money=money+bet*3;
}else
{
money=money-bet;
}
system("pause");
n++;
goto re1;
end:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
譚詩澐
當前離線
UID
68071
帖子
147
精華
0
積分
0
閱讀權限
10
在線時間
35 小時
註冊時間
2018-3-24
最後登錄
2019-7-6
新手上路
3
#
譚詩澐
發表於 2019-1-5 16:45
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int balance=0;
start:
srand(time(NULL));
int space[]={0,0,0,0};
int option, money, winer, bet;
system("cls");
cout<<"賽馬場"<<endl;
cout<<"------------------------------------------------------------------------------| 終點"<<endl;
cout<<"◆"<<endl;
cout<<"★"<<endl;
cout<<"▲"<<endl;
cout<<"●"<<endl;
cout<<"可用餘額: "<<balance<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
cin>>option;
if (option==1)
{ cout<<"買入: ";
cin>>money;
balance+=money;
goto start;
}
cout<<"下注:";
cin>>bet;
if (bet>money)
{
cout<<"可用餘額不足!請先買入"<<endl;
system("pause");
goto start;
}else
{
cout<<"(1)◆ (2)★ (3)▲ (4)●請選擇: "<<endl;
cin>>option;
}
system("pause");
while (true)
{
int r=rand()%4;
space[r]++;
if(space[r]==74)
break;
cout<<"比賽進行中"<<endl;
cout<<"--------------------------------------------------------------------------| 終點"<<endl;
for(int i=0;i<=space[0];i++)
{
cout<<" ";
}
cout<<"◆"<<endl;
for(int j=0;j<=space[1]; j++)
{
cout<<" ";
}
cout<<"★"<<endl;
for(int j=0;j<=space[2];j++)
{
cout<<" ";
}
cout<<"▲"<<endl;
for(int j=0;j<=space[3];j++)
{
cout<<" ";
}
cout<<"●"<<endl;
system("cls");
}
cout<<"比賽結束! 由 ";
if(space[0]==74)
{
cout<<"◆";
winer =1;
}
else if(space[1]==74)
{
cout<<"★";
winer =2;
}
else if(space[2]==74)
{
cout<<"▲";
winer =3;
}
else
{
cout<<"●";
winer =4;
}
cout<<" 先到達終點!"<<endl;
cout<<"比賽結束"<<endl;
cout<<"--------------------------------------------------------------------------| 終點"<<endl;
for(int i=0;i<=space[0];i++)
{
cout<<" ";
}
cout<<"◆"<<endl;
for(int j=0;j<=space[1]; j++)
{
cout<<" ";
}
cout<<"★"<<endl;
for(int j=0;j<=space[2];j++)
{
cout<<" ";
}
cout<<"▲"<<endl;
for(int j=0;j<=space[3];j++)
{
cout<<" ";
}
cout<<"●"<<endl;
if (option==winer)
{
balance = balance+ bet*3;
}
else
{
balance = balance- bet;
}
system("pause");
goto start;
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
蔡季庭
當前離線
UID
68028
帖子
431
精華
0
積分
0
閱讀權限
10
在線時間
81 小時
註冊時間
2018-1-25
最後登錄
2022-2-12
新手上路
4
#
蔡季庭
發表於 2019-1-5 16:49
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1,money=0;
re1:
int a=0, b=0, c=0, d=0, r,option,winner,bet,buying;
system("cls");
cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
cout<<"◆"<<endl;
cout<<"★"<<endl;
cout<<"▲"<<endl;
cout<<"●"<<endl<<endl;
cout<<"可用餘額: "<< money<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
cin>>option;
if(option==1) //選擇買入多少籌碼
{
cout<<"買入:";
cin>>buying;
money = money + buying; // 原始的餘額加上買入的籌碼
goto re1;
}else if(option==2)
{
if(money==0) //一開始就沒有餘額
{
cout<<"可用餘額不足!請先買入!"<<endl;
system("pause");
goto re1;
}
cout<<"下注:";
cin>> bet;
if(bet>money) //餘額< 下注金額
{
cout<<"可用餘額不足!請先買入!"<<endl;
system("pause");
goto re1;
}else
{
cout<<"(1)◆(2)★(3)▲(4)● 請選擇: "<<endl;
cin>>option;
cout<<"比賽即將開始..."<<endl<<endl;
system("pause");
}
}else if(option==3)
{
goto end;
}else
{
cout<<"輸入錯誤!!"<<endl;
system("pause");
goto re1;
}
system("pause");
system("cls");
srand(time(NULL));
while(a!=75 && b!=75 && c!=75 && d!=75)
{
r=rand()%4; //產生0~3之隨機亂數
if(r==0)
a++;
else if(r==1)
b++;
else if(r==2)
c++;
else
d++;
cout<<"比賽進行中"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"◆"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"★"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"▲"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"●"<<endl;
system("cls");
}
// 比賽結束時 第一名的馬
cout<<"比賽結束! 由 ";
if(a==75)
{
cout<<"◆";
winner+1;
}
else if(b==75)
{
cout<<"★";
winner+1;
}
else if(c==75)
{
cout<<"▲";
winner+1;
}
else
{
cout<<"●";
winner+1;
}
cout<<" 先馳得點!"<<endl;
// 印出最後4匹馬的結果
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"◆"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"★"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"▲"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"●"<<endl;
if(winner==option)
{
money = money+ bet*3;
}else
{
money = money - bet ;
}
system("pause");
n++;
goto re1;
end:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
戴唯陞
當前離線
UID
68074
帖子
155
精華
0
積分
0
閱讀權限
10
在線時間
35 小時
註冊時間
2018-5-26
最後登錄
2023-5-17
新手上路
5
#
戴唯陞
發表於 2019-1-5 16:52
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1,balance=0,winner;
re1:
int a=0, b=0, c=0, d=0, r,option,buying,bet;
system("cls");
cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
cout<<"--------------------------------------------------------------| 終點"<<endl;
cout<<"◆"<<endl;
cout<<"★"<<endl;
cout<<"▲"<<endl;
cout<<"●"<<endl;
cout<<"可用餘額: "<< balance<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
cin>>option;
if(option==1)
{
cout<<"買入:";
cin>>buying;
balance = balance + buying;
goto re1;
}else if(option==2)
{
if(balance==0)
{
cout<<"可用餘額不足!請先買入!"<<endl;
system("pause");
goto re1;
}
cout<<"下注:";
cin>> bet;
if(bet>balance)
{
cout<<"可用餘額不足!請先買入!"<<endl;
system("pause");
goto re1;
} else if(bet < balance)
{
cout<<"(1)◆(2)★(3)▲(4)● 請選擇: "<<endl;
cin>>option;
cout<<"比賽即將開始..."<<endl<<endl;
system("pause");
}
} else if(option==3)
{
goto end;
} else
{
cout<<"輸入錯誤!"<<endl;
system("pause");
goto re1;
}
system("pause");
system("cls");
srand(time(NULL));
while(a!=75 && b!=75 && c!=75 && d!=75)
{
r=rand()%4;
if(r==0)
a++;
else if(r==1)
b++;
else if(r==2)
c++;
else
d++;
cout<<"比賽進行中"<<endl;
cout<<"--------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"◆"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"★"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"▲"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"●"<<endl;
system("cls");
}
cout<<"比賽結束! 由 ";
if(a==75)
{
cout<<"◆";
winner = 1;
}
else if(b==75)
{
cout<<"★";
winner = 2;
}
else if(c==75)
{
cout<<"▲";
winner = 3;
}
else
{
cout<<"●";
winner =4;
}
cout<<" 先馳得點!"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"◆"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"★"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"▲"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"●"<<endl;
if(option==winner)
{
cout<<"贏了"<<bet<<"元"<<endl;
balance+=bet*3;
}
else
{
cout<<"輸了"<<bet<<"元"<<endl;
balance-=bet;
}
system("pause");
n++;
goto re1;
end:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
陳柏霖
當前離線
UID
67745
帖子
299
精華
0
積分
0
閱讀權限
10
在線時間
63 小時
註冊時間
2016-7-7
最後登錄
2020-8-15
新手上路
6
#
陳柏霖
發表於 2019-1-5 16:55
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=1 ,mony=0 ,many;
re:
int a=0 ,b=0 ,c=0 ,d=0 ,z ,win ,buy ,bird ,n;
srand(time(NULL));
cout<<"第"<<x<<"場[萬事如意]賽馬場"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
cout<<"◆"<<endl;
cout<<"★"<<endl;
cout<<"㊣"<<endl;
cout<<"▼"<<endl<<endl;
cout<<"可用餘額:"<<mony<<"元"<<endl;
cout<<"(1)買入(2)下注(3)離開 請選擇:";
cin>>z;
if(z==1)
{
cout<<"買入:";
cin>>buy;
mony=mony+buy;
system("cls");
goto re;
}else if(z==2)
{
if(mony==0)
{
cout<<"餘額不足!請先買入!";
system("pause");
system("cls");
goto re;
}
cout<<"下注:";
cin>>bird;
if(bird>mony)
{
cout<<"餘額不足!請先買入!";
system("pause");
system("cls");
goto re;
}else if(bird<=mony)
{
cout<<"(1)■(2)★(3)㊣(4)▼ 請選擇:";
cin>>many;
cout<<"比賽即將開始>>>"<<endl<<endl;
system("pause");
}
}else if(z==3)
{
goto go;
}else
{
cout<<"輸入錯誤";
system("pause");
system("cls");
goto re;
}
system("pause");
while(a!=70 && b!=70 && c!=70 && d!=70)
{
cout<<"比賽中"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
z=rand()%4+1;
if(z==1)
{
a+=2;
}
if(z==2)
{
b+=2;
}
if(z==3)
{
c+=2;
}
if(z==4)
{
d+=2;
}
for(int i=0; i<=a; i++)
{
cout<<" ";
}
cout<<"◆"<<endl;
for(int i=0; i<=b; i++)
{
cout<<" ";
}
cout<<"★"<<endl;
for(int i=0; i<=c; i++)
{
cout<<" ";
}
cout<<"㊣"<<endl;
for(int i=0; i<=d; i++)
{
cout<<" ";
}
cout<<"▼"<<endl;
system("cls");
}
cout<<"第"<<x<<"場比賽結束 由";
if(a==70)
{
cout<<"◆";
win=1;
}else if(b==70)
{
cout<<"★";
win=2;
}else if(c==70)
{
cout<<"㊣";
win=3;
}else
{
cout<<"▼";
win=4;
}
cout<<"先馳得點!"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=0; i<=a; i++)
{
cout<<" ";
}
cout<<"◆"<<endl;
for(int i=0; i<=b; i++)
{
cout<<" ";
}
cout<<"★"<<endl;
for(int i=0; i<=c; i++)
{
cout<<" ";
}
cout<<"㊣"<<endl;
for(int i=0; i<=d; i++)
{
cout<<" ";
}
cout<<"▼"<<endl;
cout<<"按任意鍵進行下一場比賽"<<endl;
if(win=many)
{
mony=mony+bird*3;
}else
{
mony=mony-bird;
}
system("pause");
system("cls");
x++;
goto re;
go:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
戴偉宸
當前離線
UID
68075
帖子
370
精華
0
積分
0
閱讀權限
10
在線時間
89 小時
註冊時間
2018-5-26
最後登錄
2021-9-2
新手上路
7
#
戴偉宸
發表於 2019-1-5 16:56
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1,money=0,winner;
re1:
int a=0, b=0, c=0, d=0, r,option,bet,buyin;
system("cls");
cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
cout<<"◆"<<endl;
cout<<"★"<<endl;
cout<<"▲"<<endl;
cout<<"●"<<endl<<endl;
cout<<"可用餘額: "<< money<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
cin>>option;
if(option==1)
{
cout<<"買入:";
cin>>buyin;
money = money + buyin;
goto re1;
}else if(option==2)
{
if(money==0)
{
cout<<"可用餘額不足!請先買入!"<<endl;
system("pause");
goto re1;
}
cout<<"下注:";
cin>> bet;
if(bet>money)
{
cout<<"可用餘額不足!請先買入!"<<endl;
system("pause");
goto re1;
}else
{
cout<<"(1)◆(2)★(3)▲(4)● 請選擇: "<<endl;
cin>>option;
cout<<"比賽即將開始..."<<endl<<endl;
system("pause");
}
}else if(option==3)
{
goto end;
}else
{
cout<<"輸入錯誤!!"<<endl;
system("pause");
goto re1;
}
system("pause");
system("cls");
srand(time(NULL));
while(a!=70 && b!=70 && c!=70 && d!=70)
{
r=rand()%4;
if(r==0)
a++;
else if(r==1)
b++;
else if(r==2)
c++;
else
d++;
cout<<"比賽進行中"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"◆"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"★"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"▲"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"●"<<endl;
system("cls");
}
cout<<"比賽結束! 由 ";
if(a==70)
{
cout<<"◆";
winner=1;
}
else if(b==70)
{
cout<<"★";
winner=2;
}
else if(c==70)
{
cout<<"▲";
winner=3;
}
else
{
cout<<"●";
winner=4;
}
cout<<" 先馳得點!"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"◆"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"★"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"▲"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"●"<<endl;
if(option==winner)
{
cout<<"贏了"<<bet*3<<"元!"<<endl;
money+=bet*3;
}
else{
cout<<"損失"<<bet<<"元!"<<endl;
money-=bet;
}
system("pause");
n++;
goto re1;
end:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
戴安利
當前離線
UID
68073
帖子
204
精華
0
積分
0
閱讀權限
10
在線時間
43 小時
註冊時間
2018-5-26
最後登錄
2020-5-2
新手上路
8
#
戴安利
發表於 2019-1-5 16:57
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1, money=0;
re:
int a=0, b=0, c=0, d=0, r, option, buyin, bet, winner;
system("cls");
cout<<"+++好事成雙->賽馬場+++ 第"<<n<<"局"<<endl;
cout<<"-------------------------------------------|終點"<<endl;
cout<<"◆"<<endl;
cout<<"★"<<endl;
cout<<"▲"<<endl;
cout<<"●"<<endl;
cout<<endl;
cout<<"可用餘額:"<<money<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇"<<endl;
cin>>option;
if(option==1)
{
cout<<"買入:"<<endl;
cin>>buyin;
money+=buyin;
goto re;
}
else if(option==2)
{
if(money==0)
{
cout<<"可用餘額不足!請先買入!!"<<endl;
system("pause");
goto re;
}
cout<<"下注:";
cin>>bet;
if(bet>money)
{
cout<<"可用餘額不足!請先買入!!"<<endl;
system("pause");
goto re;
}
else
{
cout<<"(1)◆(2)★(3)▲(4)● 請選擇:"<<endl;
cin>>option;
cout<<"比賽即將開始....."<<endl<<endl;
system("pause");
}
}
else if(option==3)
{
goto end;
}
else
{
cout<<"輸入錯誤"<<endl;
system("pause");
goto re;
}
system("pause");
system("cls");
srand(time(NULL));
while(a!=20 && b!=20 && c!=20 && d!=20)
{
cout<<"賽馬進行中..."<<endl;
cout<<"-------------------------------------------|終點"<<endl;
r = rand()%4+1;
if(r==1)
a++;
if(r==2)
b++;
if(r==3)
c++;
if(r==4)
d++;
for(int i=0;i<=a;i++)
cout<<" ";
cout<<"◆"<<endl;
a++;
for(int i=0;i<=b;i++)
cout<<" ";
cout<<"★"<<endl;
b++;
for(int i=0;i<=c;i++)
cout<<" ";
cout<<"▲"<<endl;
c++;
for(int i=0;i<=d;i++)
cout<<" ";
cout<<"●"<<endl;
d++;
system("cls");
}
cout<<"賽馬結束...!由 ";
if(a==20)
{
cout<<"◆";
winner = 1;
}
else if(b==20)
{
cout<<"★";
winner = 2;
}
else if(c==20)
{
cout<<"▲";
winner = 3;
}
else
{
cout<<"●";
winner = 4;
}
cout<<"先抵達終點!"<<endl;
cout<<"-------------------------------------------|終點"<<endl;
for(int i=0;i<=a;i++)
cout<<" ";
cout<<"◆"<<endl;
a++;
for(int i=0;i<=b;i++)
cout<<" ";
cout<<"★"<<endl;
b++;
for(int i=0;i<=c;i++)
cout<<" ";
cout<<"▲"<<endl;
c++;
for(int i=0;i<=d;i++)
cout<<" ";
cout<<"●"<<endl;
d++;
if(option==winner)
{
cout<<"贏了"<<bet*3<<"元!"<<endl;
money+=bet*3;
}else
{
cout<<"損失"<<bet<<"元!"<<endl;
money-=bet;
}
system("pause");
n++;
goto re;
end:
system("pause");
return 0;
}
複製代碼
TOP
返回列表
110Python冬令營
C++(105-1六)(特別輔導)
C++(一1900)(201808)
谷哥人營隊
113Scratch夏令營
113年APCS冬令營
113年Scratch冬令營
113年Python證照特訓營(一)
113年谷哥人程式體驗營
113年國三專班
Python研習營(113_114)
113年Python證照特訓營(二)
113年程式夏令營(一)(二)
113年APCS夏令營(一)(二)
Python研習營
113年Python研習冬令營
112年國三專班
112APCS夏令營(一)(二)
112App快速開發夏令營
C語言 / C++ (特別輔導)
C++證照
C#
家教特輔
C語言特輔/證照(家教)
C++證照
C#
HTML5+CSS+JavaScript+PHP+MySQL
Java 家教 (王捷恩)
113新版塊名稱
快樂學 Scratch
Python 家教 (王捷恩 康恒睿)
Python 特別輔導 (家教)
快樂 C++ (家教)
我愛 Java (家教)
程式解題我最行 (家教)
程式常態班
C++ 新生挑戰區
考照心得分享
快樂 C++11307週五19:00
快樂C++11309週六13:30-15:30
快樂 C++11303 (週六15:40-17:40) 3F
程式解題我最行 (週六15:30-17:30) 3F
快樂 C++ (週六13:30-15:30) 3F
快樂 C++ (週六19:00-21:00) 3F
程式解題我最行 (週六10:00-12:00) 3F
快樂學 Scratch
程式解題我最行(週五19:00-21:00)
快樂 C++ (週六13:30-15:30) 3F
程式解題我最行(週三19:15-21:15)
快樂 C++11207週六10
快樂 C++11208週六19:00
程式解題我最行 (週五19:00-21:00) 3F
快樂 C++ (週六15:30-17:30) 3F
程式解題我最行 (週六19:00-21:00) 3F
程式解題我最行 (週四19:10-21:10)
產投職訓
結訓課程 (產投職訓)
Php & MySQL old
Illustrator old
Dreamweaver old
Android手機程式開發班
PHP & MySQL電子商務互動式網站實作班 (102下)
PHP & MySQL (102上)
PHP & MySQL電子商務互動式網站實作班
Photoshop數位影像設計初階
Flash創意廣告動畫初階
行銷短片視訊剪輯
數位商業攝影實務班
PHP & MySQL電子商務系統開發實務初階班
電子商務系統開發實務中階班
Server基礎架設&動態網頁設計初階班
Java視窗應用程式設計與遊戲開發班
Illustrator時尚插畫創作設計初階班
102上Php & MySQL 初階班
電子商務互動式網站實作中階
Dreamweaver多媒體網頁設計
Android手機程式開發班(2012年10月)
PHP & MySQL (2012年10月)
創意塗鴉
yahoo橫幅
google橫幅
市民學苑
第二屆樂活部落格
第一屆電腦設備簡易維護和故障排除班
專案訓練
電子商務創業班
TQC PHP認證
投資理財班
領隊導遊班
電腦基礎及網路應用身心障礙專班
應用軟體網頁化開發
[收藏此主題]
[關注此主題的新回復]
[通過 QQ、MSN 分享給朋友]