標題:
賽馬程式 (四)
[打印本頁]
作者:
李泳霖
時間:
2022-6-17 20:13
標題:
賽馬程式 (四)
本帖最後由 李泳霖 於 2022-6-24 19:12 編輯
1.加入可用餘額
2.加入首頁選單(有買入、下注、離開)選項
3.實作買入功能即可!
執行畫面如下:
在使用者輸入數值後, 畫面更新如下:
#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;
}
system("cls");
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-6-17 20:13
此帖僅作者可見
作者:
蘇允翎
時間:
2022-6-17 20:49
此帖僅作者可見
作者:
呂宏晏
時間:
2022-6-17 20:49
此帖僅作者可見
作者:
吳侑諶
時間:
2022-6-17 20:50
此帖僅作者可見
作者:
尤爾帆
時間:
2022-6-17 20:50
此帖僅作者可見
作者:
賴聿均
時間:
2022-6-17 20:51
此帖僅作者可見
作者:
郭又瑄
時間:
2022-6-17 20:53
此帖僅作者可見
作者:
王宥凱
時間:
2022-6-17 20:53
此帖僅作者可見
作者:
洪浚恩
時間:
2022-6-17 20:54
此帖僅作者可見
作者:
陳柏融
時間:
2022-6-17 20:54
此帖僅作者可見
作者:
許志捷
時間:
2022-6-19 16:06
此帖僅作者可見
作者:
尤爾璿
時間:
2022-6-24 19:08
此帖僅作者可見
作者:
王宥凱
時間:
2022-6-24 20:32
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2