註冊
登錄
論壇
搜索
幫助
導航
私人消息 (0)
公共消息 (0)
系統消息 (0)
好友消息 (0)
帖子消息 (0)
種子論壇 | 高雄市資訊培育協會學員討論區
»
結訓課程 (青少年程式設計班)
»
C++
» 賽馬程式 (五)
返回列表
發帖
發短消息
加為好友
tonyh
當前離線
UID
94
帖子
7065
精華
21
積分
210
閱讀權限
150
在線時間
2596 小時
註冊時間
2011-1-8
最後登錄
2024-11-12
超級版主
1
#
跳轉到
»
倒序看帖
打印
字體大小:
t
T
tonyh
發表於 2014-4-19 17:15
|
只看該作者
賽馬程式 (五)
1. 完成主選單的主要架構 (運用if...else if...else判斷式)
2. 新增 (2)下注 功能
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1,balance=0;
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<<"◆";
else if(b==75)
cout<<"★";
else if(c==75)
cout<<"▲";
else
cout<<"●";
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("pause");
n++;
goto re1;
end:
system("pause");
return 0;
}
複製代碼
收藏
分享
發短消息
加為好友
施伯叡
當前離線
UID
67582
帖子
111
精華
0
積分
0
閱讀權限
10
在線時間
21 小時
註冊時間
2013-8-12
最後登錄
2014-4-27
新手上路
2
#
施伯叡
發表於 2014-4-19 17:22
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1, balance=0;
re:
int a=0, b=0, c=0, d=0, r , option, buyin, bet;
system("cls");
cout<<"「穩賺不賠」賽馬場 <第"<<n<<"場>"<<endl;
cout<<"-------------------------------------------------------------------------| 終點"<<endl;
cout<<"★1☆"<<endl;
cout<<"☆2★"<<endl;
cout<<"★3☆"<<endl;
cout<<"☆4★"<<endl<<endl;
cout<<"可用餘額: "<<balance<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
cin>>option;
if(option==1)
{
cout<<"買入: ";
cin>>buyin;
balance=balance+buyin;
goto re;
}
else if(option==2)
{
if(balance==0)
{
cout<<"可用餘額不足! 請先買入!"<<endl<<endl;
system("pause");
goto re;
}
cout<<"下注: ";
cin>>bet;
if(bet>balance)
{
cout<<"可用餘額不足! 請先買入!"<<endl<<endl;
system("pause");
goto re;
}
else
{
cout<<endl<<"(1)1號 (2)2號 (3)3號 (4)4號 請選擇: ";
cin>>option;
cout<<"比賽即將開始..."<<endl<<endl;
system("pause");
}
}
else if(option==3)
{
goto end;
}
else
{
cout<<"輸入錯誤!"<<endl;
system("pause");
goto re;
}
system("cls");
srand(time(NULL));
while(a!=70 && b!=70 && c!=70 && b!=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<<"★1☆"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"☆2★"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"★3☆"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"☆4★"<<endl;
system("cls");
}
if(a>b && a>c && a>d)
cout<<"比賽結束,由1號選手先馳得點"<<endl;
if(b>a && b>c && b>d)
cout<<"比賽結束,由2號選手先馳得點"<<endl;
if(c>a && c>b && c>d)
cout<<"比賽結束,由3號選手先馳得點"<<endl;
if(d>a && d>b && d>c)
cout<<"比賽結束,由4號選手先馳得點"<<endl;
cout<<"-------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"★1☆"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"☆2★"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"★3☆"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"☆4★"<<endl;
system("pause");
n++;
goto re;
end:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
張郁庭
當前離線
UID
67586
帖子
284
精華
0
積分
0
閱讀權限
10
在線時間
63 小時
註冊時間
2013-8-12
最後登錄
2023-5-17
新手上路
3
#
張郁庭
發表於 2014-4-19 17:26
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int t=1, balance=0;
re1:
int a=0, b=0, c=0, d=0, r, option, buyin, bet;
system("cls");
cout<<"﹩財源滾滾賽馬場 ﹩";
cout<<" 第"<<t<<"局"<<endl;
cout<<"=========================================================================| 終點"<<endl;
cout<<"◢1◤"<<endl;
cout<<"◢2◤"<<endl;
cout<<"◢3◤"<<endl;
cout<<"◢4◤"<<endl;
cout<<"可用餘額: "<<balance<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
cin>>option;
if(option==1)
{
cout<<"買入: ";
cin>>buyin;
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)◢1◤ (2)◢2◤ (3)◢3◤ (4)◢4◤ 請選擇: ";
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<<"◢1◤"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"◢2◤"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"◢3◤"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"◢4◤"<<endl;
system("cls");
}
cout<<"比賽結束";
if(a==75)
cout<<" 由◢1◤獲得勝利"<<endl;
else if(b==75)
cout<<" 由◢2◤獲得勝利"<<endl;
else if(c==75)
cout<<" 由◢3◤獲得勝利"<<endl;
else
cout<<" 由◢4◤獲得勝利"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"◢1◤"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"◢2◤"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"◢3◤"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"◢4◤"<<endl;
system("pause");
t++;
goto re1;
end:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
劉得旗
當前離線
UID
67543
帖子
184
精華
0
積分
0
閱讀權限
10
在線時間
30 小時
註冊時間
2013-1-21
最後登錄
2014-9-27
新手上路
4
#
劉得旗
發表於 2014-4-19 17:26
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1,balance=0;
re1:
int a=0, b=0, c=0, d=0, r, option, buyin, bet;
system("cls");
cout<<"gg賽馬場 第 "<<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;
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;
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<<"◆";
else if(b==75)
cout<<"★";
else if(c==75)
cout<<"▲";
else
cout<<"●";
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("pause");
n++;
goto re1;
end:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
張峻瑋
當前離線
UID
67589
帖子
368
精華
0
積分
0
閱讀權限
10
在線時間
98 小時
註冊時間
2013-8-12
最後登錄
2016-10-1
新手上路
5
#
張峻瑋
發表於 2014-4-19 17:26
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int e=1,balance=0;
re1:
int a=0,b=0,c=0,d=0,r,option,buyin,bet;
system("cls");
cout<<"$ 888賽馬場 第"<<e<<"局 $"<<endl;
cout<<"--------------------------------------------------------------------------│"<<endl;
cout<<"◢1◤"<<endl;
cout<<"◢2◤"<<endl;
cout<<"◢3◤"<<endl;
cout<<"◢4◤"<<endl;
cout<<endl;
cout<<"可用餘額:"<<balance<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
cin>>option;
if(option==1)
{
cout<<"買入: ";
cin>>buyin;
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)◢1◤ (2)◢2◤ (3)◢3◤ (4)◢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;
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<<"◢1◤"<<endl;
for(int i=1;i<=b;i++)
cout<<" ";
cout<<"◢2◤"<<endl;
for(int i=1;i<=c;i++)
cout<<" ";
cout<<"◢3◤"<<endl;
for(int i=1;i<=d;i++)
cout<<" ";
cout<<"◢4◤"<<endl;
system("cls");
}
cout<<"比賽結束!由 ";
if(a==75)
cout<<"◢1◤";
if(b==75)
cout<<"◢2◤";
if(c==75)
cout<<"◢3◤";
if(d==75)
cout<<"◢4◤";
cout<<" 先馳得點"<<endl;
cout<<"--------------------------------------------------------------------------│終點"<<endl;
for(int i=1;i<=a;i++)
cout<<" ";
cout<<"◢1◤"<<endl;
for(int i=1;i<=b;i++)
cout<<" ";
cout<<"◢2◤"<<endl;
for(int i=1;i<=c;i++)
cout<<" ";
cout<<"◢3◤"<<endl;
for(int i=1;i<=d;i++)
cout<<" ";
cout<<"◢4◤"<<endl;
system("pause");
e++;
goto re1;
end:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
張彥承
當前離線
UID
67585
帖子
417
精華
0
積分
0
閱讀權限
10
在線時間
74 小時
註冊時間
2013-8-12
最後登錄
2020-7-4
新手上路
6
#
張彥承
發表於 2014-4-19 17:26
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1,balance=0;
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;
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<<"(1) ◆ (2) ★ (3) ▲(4) ●請選擇: ";
cin>>option;
cout<<"比賽即將開始..."<<endl<<endl;
}
}else if(option==3)
{
goto end;
}else
{
cout<<"輸入錯誤!"<<endl<<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<<"◆";
else if(b==75)
cout<<"★";
else if(c==75)
cout<<"▲";
else
cout<<"●";
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("pause");
n++;
goto re1;
end:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
張郁偵
當前離線
UID
67587
帖子
111
精華
0
積分
0
閱讀權限
10
在線時間
18 小時
註冊時間
2013-8-12
最後登錄
2014-4-19
新手上路
7
#
張郁偵
發表於 2014-4-19 17:30
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1,balance=0;
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<<endl;
cout<<"可用餘額:"<<balance<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
cin>>option;
if(option==1)
{
cout<<"買入 :";
cin>>buying;
balance+=buying;
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;
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<<"∞";
else if(b==75)
cout<<"△";
else if(c==75)
cout<<"◇";
else
cout<<"●";
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("pause");
goto re1;
end:
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
周雍程
當前離線
UID
67588
帖子
278
精華
0
積分
0
閱讀權限
10
在線時間
66 小時
註冊時間
2013-8-12
最後登錄
2015-10-24
新手上路
8
#
周雍程
發表於 2014-4-27 10:39
|
只看該作者
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int e=1, balance=0;
re1:
int a=0, b=0, c=0, d=0, r, option, buyin, bet;
system("cls");
cout<<"$賺大錢賽馬場$ 第"<<e<<"局"<<endl;
cout<<"------------------------------------------------------------------------│終點"<<endl;
cout<<"◢ 1▋"<<endl;
cout<<"◢ 2▋"<<endl;
cout<<"◢ 3▋"<<endl;
cout<<"◢ 4▋"<<endl;
cout<<endl<<"可用餘額:"<<balance<<"元!"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
cin>>option;
if(option==1)
{
cout<<"買入: ";
cin>>buyin;
balance+=buyin;
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
{
cout<<"(1)◢ 1▋ (2)◢ 2▋ (3)◢ 3▋ (4)◢ 4▋ 請選擇:";
cin>>option;
cout<<"比賽即將開始..."<<endl;
system("pause");
}
}
else if(option==3)
{
goto end;
}
else
{
cout<<"輸入錯誤!"<<endl;
}
system("cls");
srand(time(NULL));
while(a!=73 && b!=73 && c!=73 && d!=73)
{
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<<"◢ 1▋"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"◢ 2▋"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"◢ 3▋"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"◢ 4▋"<<endl;
system("cls");
}
cout<<"比賽結束 由";
if(a==73)
cout<<"◢ 1▋";
if(b==73)
cout<<"◢ 2▋";
if(c==73)
cout<<"◢ 3▋";
if(d==73)
cout<<"◢ 4▋";
cout<<"先馳得點";
cout<<"------------------------------------------------------------------------│終點"<<endl;
for(int i=1; i<=a; i++)
cout<<" ";
cout<<"◢ 1▋"<<endl;
for(int i=1; i<=b; i++)
cout<<" ";
cout<<"◢ 2▋"<<endl;
for(int i=1; i<=c; i++)
cout<<" ";
cout<<"◢ 3▋"<<endl;
for(int i=1; i<=d; i++)
cout<<" ";
cout<<"◢ 4▋"<<endl;
system("pause");
e++;
goto re1;
end:
system("pause");
return 0;
}
複製代碼
TOP
返回列表
谷哥人營隊
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 分享給朋友]