標題:
[作業] 賽馬程式 (五)
[打印本頁]
作者:
葉桔良
時間:
2022-8-20 14:03
標題:
[作業] 賽馬程式 (五)
本帖最後由 葉桔良 於 2022-9-3 15:54 編輯
1. 完成主選單的主要架構 (運用if...else if...else判斷式)
2. 新增 (2)下注 功能
3. 處理
下注
時可能出現的bug: 當輸入0以下的數字, 顯示 "
輸入錯誤!
"
4. 處理
下注
時可能出現的bug: 當下注金額超過可用餘額, 顯示 "
可用餘額不足,請先買入!
"
5. 處理
買入
時可能出現的bug: 當輸入0以下的數字, 顯示 "
輸入錯誤!
"
6. 錯誤提示訊息顯示 1.5秒 後自動消失, 並回到輸入畫面, 使能重新輸入
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
int n=1, balance=0;
int option, buyin;
re:
system("cls");
srand(time(NULL));
int s[]={0,0,0,0};
string p[]={"◆","★","▲","●"};
int r=0;
cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
cout<<"-------------------------------------------------------------------------| 終點"<<endl;
for(int i=0; i<4; i++)
cout<<p[i]<<endl;
cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
cin>>option;
if(option==1)
{
cout<<"買入: ";
cin>>buyin;
balance+=buyin;
goto re;
}
if(option==2)
{
while(s[r]<=73)
{
r=rand()%4; //0~3
s[r]++;
cout<<"比賽進行中"<<endl;
cout<<"-------------------------------------------------------------------------| 終點"<<endl;
for(int i=0; i<4; i++)
{
for(int j=0; j<s[i]; j++)
cout<<" ";
cout<<p[i]<<endl;
}
// _sleep(50);
system("cls");
}
}
cout<<"比賽結束! 由 "<<p[r]<<" 先馳得點!"<<endl;
cout<<"-------------------------------------------------------------------------| 終點"<<endl;
for(int i=0; i<4; i++)
{
for(int j=0; j<s[i]; j++)
cout<<" ";
cout<<p[i]<<endl;
}
system("pause");
n++;
goto re;
return 0;
}
複製代碼
作者:
葉桔良
時間:
2022-8-20 14:03
此帖僅作者可見
作者:
王競儀
時間:
2022-8-26 20:29
此帖僅作者可見
作者:
錢冠叡
時間:
2022-8-27 17:28
此帖僅作者可見
作者:
孫文康
時間:
2022-8-27 17:33
此帖僅作者可見
作者:
石皓云
時間:
2022-8-28 10:12
此帖僅作者可見
作者:
侯宥安
時間:
2022-8-28 17:21
此帖僅作者可見
作者:
謝閔丞
時間:
2022-8-28 23:22
此帖僅作者可見
作者:
黃昱琁
時間:
2022-9-3 09:53
此帖僅作者可見
作者:
許浩浩
時間:
2022-9-3 11:17
此帖僅作者可見
作者:
侯宣仲
時間:
2022-9-3 11:41
此帖僅作者可見
作者:
郭閎宇
時間:
2022-9-3 16:06
此帖僅作者可見
作者:
侯宣仲
時間:
2022-9-3 16:15
此帖僅作者可見
作者:
侯宣任
時間:
2022-9-3 16:18
此帖僅作者可見
作者:
許博鈞
時間:
2022-9-3 16:30
此帖僅作者可見
作者:
張駿霖
時間:
2022-9-9 13:57
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2