註冊
登錄
論壇
搜索
幫助
導航
私人消息 (0)
公共消息 (0)
系統消息 (0)
好友消息 (0)
帖子消息 (0)
種子論壇 | 高雄市資訊培育協會學員討論區
»
結訓課程 (青少年程式設計班)
»
C++(二1700)
» 賽馬程式 (三)
返回列表
發帖
發短消息
加為好友
歐柏罕
當前離線
UID
67963
帖子
304
精華
0
積分
0
閱讀權限
100
在線時間
100 小時
註冊時間
2017-8-9
最後登錄
2018-6-7
版主
1
#
跳轉到
»
倒序看帖
打印
字體大小:
t
T
歐柏罕
發表於 2017-10-24 18:29
|
只看該作者
賽馬程式 (三)
本帖最後由 歐柏罕 於 2017-10-24 18:49 編輯
#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int main()
{
int times=1;
while(true)
{
int horse1=0, horse2=0, horse3=0, horse4=0, random=0;
int balance=0; //錢包
int option=0; //讓他做選擇 ,ABC => string
int buyin=0; //輸入的錢
while(option == 0 or option ==1) //第一次或是買入
{
srand(time(NULL));
system("cls");
cout<<"「好事成雙」賽馬場 " << "第 " <<times << "局 "<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
cout<<"◆"<<endl;
cout<<"★"<<endl;
cout<<"▲"<<endl;
cout<<"●"<<endl;
cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
cin>>option;
if(option==1)
{
cout<<"買入: ";
cin>>buyin;
balance+=buyin;
}
system("pause");
system("cls");
}
while(horse1!=75 && horse2!=75 && horse3!=75 && horse4!=75)
{
random=rand()%4; //產生0~3之隨機亂數
if(random==0) {
horse1++;
}
else if(random==1) {
horse2++;
}
else if(random==2) {
horse3++;
}
else if(random==3) {
horse4++;
}
cout<<"比賽進行中"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=horse1; i++) {
cout<<" ";
}
cout<<"◆"<<endl;
for(int i=1; i<=horse2; i++) {
cout<<" ";
}
cout<<"★"<<endl;
for(int i=1; i<=horse3; i++) {
cout<<" ";
}
cout<<"▲"<<endl;
for(int i=1; i<=horse4; i++) {
cout<<" ";
}
cout<<"●"<<endl;
system("cls");
}
times++;
system("cls");
cout<<"比賽結束! 由 ";
if(horse1 == 75) {
cout<< "◆" << "先馳得點" << endl;
}
else if (horse2 == 75) {
cout<< "★" << "先馳得點" << endl;
}
else if (horse3 == 75) {
cout<< "▲" << "先馳得點" << endl;
}
else if (horse4 == 75) {
cout<< "●" << "先馳得點" << endl;
}
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=horse1; i++) {
cout<<" ";
}
cout<<"◆"<<endl;
for(int i=1; i<=horse2; i++) {
cout<<" ";
}
cout<<"★"<<endl;
for(int i=1; i<=horse3; i++) {
cout<<" ";
}
cout<<"▲"<<endl;
for(int i=1; i<=horse4; i++) {
cout<<" ";
}
cout<<"●"<<endl;
system("pause");
}
system("pause");
return 0;
}
複製代碼
收藏
分享
發短消息
加為好友
顏羽彤
當前離線
UID
67813
帖子
196
精華
0
積分
0
閱讀權限
10
在線時間
36 小時
註冊時間
2017-2-1
最後登錄
2019-1-5
新手上路
2
#
顏羽彤
發表於 2017-10-24 18:41
|
只看該作者
#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int main()
{
int times=1;
while(true)
{
int horse1=0, horse2=0, horse3=0, horse4=0,random=0,money=0,option=0,buyin=0;
while(option==0 || option==1)
{ srand(time(NULL));
system("cls");
cout<<"「好事成雙」賽馬場 "<<"第"<<times<<"次"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
cout<<"◆"<<endl;
cout<<"★"<<endl;
cout<<"▲"<<endl;
cout<<"●"<<endl;
cout<<"可用餘額:"<<money<<"元"<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇:"<<endl;
cin>>option;
if(option=1)
{
cout<<"買入:";
cin>>buyin;
money=money+buyin;
}
system("pause");
system("cls");
}
while(horse1!=75 && horse2!=75 && horse3!=75 && horse4!=75)
{
random=rand()%4; //產生0~3之隨機亂數
if(random==0)
{
horse1++;
}
else if(random==1)
{
horse2++;
}
else if(random==2)
{
horse3++;
}
else if(random==3)
{
horse4++;
}
cout<<"比賽進行中"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=horse1; i++)
{
cout<<" ";
}
cout<<"◆"<<endl;
for(int i=1; i<=horse2; i++)
{
cout<<" ";
}
cout<<"★"<<endl;
for(int i=1; i<=horse3; i++)
{
cout<<" ";
}
cout<<"▲"<<endl;
for(int i=1; i<=horse4; i++)
{
cout<<" ";
}
cout<<"●"<<endl;
system("cls");
}
times++;
cout<<"比賽結束 由";
if(horse1==75)
{
cout<<"◆";
}
if(horse2==75)
{
cout<<"★";
}
if(horse3==75)
{
cout<<"▲";
}
if(horse4==75)
{
cout<<"●";
}
cout<<"先馳得點!"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=horse1; i++)
{
cout<<" ";
}
cout<<"◆"<<endl;
for(int i=1; i<=horse2; i++)
{
cout<<" ";
}
cout<<"★"<<endl;
for(int i=1; i<=horse3; i++)
{
cout<<" ";
}
cout<<"▲"<<endl;
for(int i=1; i<=horse4; i++)
{
cout<<" ";
}
cout<<"●"<<endl;
system("pause");
system("cls");
}
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
巫沛庭
當前離線
UID
67715
帖子
228
精華
0
積分
0
閱讀權限
10
在線時間
51 小時
註冊時間
2016-1-21
最後登錄
2018-12-30
新手上路
3
#
巫沛庭
發表於 2017-10-24 18:43
|
只看該作者
#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int main()
{
int times=0;
while(true)
{
int horse1=0,horse2=0,horse3=0,horse4=0,random=0;
int money=0,buyin=0,choise=0;
system("cls");
while( choise== 0 or choise ==1)
{
srand(time(NULL));
system("cls");
cout<<"人山人海人見人愛 賽馬場"<<endl;
cout<<"---------------------------------------------|終點"<<endl;
cout<<"Q"<<endl;
cout<<"∮"<<endl;
cout<<"㊣"<<endl;
cout<<"♂"<<endl;
cout<<"可用餘額:"<<money<<"元"<<endl;
cout<<"(1)買入(2)下注(3)離開,請選擇:";
cin>>choise;
if(choise==1)
{
cout<<"請輸入價錢:";
cin>>buyin;
money=+buyin;
}
}
system("pause");
system("cls");
while(horse1!=45&&horse2!=45&&horse3!=45&&horse4!=45)
{
random=rand()%4;
if(random==0)
horse1++;
if(random==1)
horse2++;
if(random==2)
horse3++;
if(random==3)
horse4++;
cout<<"比賽進行中"<<endl;
cout<<"---------------------------------------------| 終點"<<endl;
for(int i=1; i<=horse1; i++)
cout<<" ";
cout<<"Q"<<endl;
for(int i=1;i<=horse2;i++)
cout<<" ";
cout<<"∮"<<endl;
for(int i=1;i<=horse3;i++)
cout<<" ";
cout<<"㊣"<<endl;
for(int i=1;i<=horse4;i++)
cout<<" ";
cout<<"♂"<<endl;
system("cls");
}
times++;
cout<<"比賽結束!由";
if(horse1==45)
cout<<"Q獲勝~~"<<endl;
else if(horse2==45)
cout<<"∮獲勝~~"<<endl;
else if(horse3==45)
cout<<"㊣獲勝~~"<<endl;
else if(horse1=4==45)
cout<<"♂獲勝~~"<<endl;
cout<<"---------------------------------------------| 終點"<<endl;
for(int i=1; i<=horse1; i++)
cout<<" ";
cout<<"Q"<<endl;
for(int i=1;i<=horse2;i++)
cout<<" ";
cout<<"∮"<<endl;
for(int i=1;i<=horse3;i++)
cout<<" ";
cout<<"㊣"<<endl;
for(int i=1;i<=horse4;i++)
cout<<" ";
cout<<"♂"<<endl;
system("pause");
}
system("pause");
return 0;
}
TOP
發短消息
加為好友
張閎鈞
當前離線
UID
67826
帖子
297
精華
0
積分
0
閱讀權限
10
在線時間
58 小時
註冊時間
2017-2-2
最後登錄
2019-7-5
新手上路
4
#
張閎鈞
發表於 2017-10-24 18:49
|
只看該作者
#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int main()
{
int times=1;
while(true)
{
int horse1=0, horse2=0, horse3=0, horse4=0, random=0;
int balance=0; //錢包
int option=0; //讓他做選擇 ,ABC => string
int buyin=0; //輸入的錢
while(option == 0 or option ==1) //第一次或是買入
{
srand(time(NULL));
system("cls");
cout<<"「好事成雙」賽馬場 " << "第 " <<times << "局 "<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
cout<<"◆"<<endl;
cout<<"★"<<endl;
cout<<"▲"<<endl;
cout<<"●"<<endl;
cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
cin>>option;
if(option==1)
{
cout<<"買入: ";
cin>>buyin;
balance+=buyin;
}
system("pause");
system("cls");
}
while(horse1!=75 && horse2!=75 && horse3!=75 && horse4!=75)
{
random=rand()%4; //產生0~3之隨機亂數
if(random==0) {
horse1++;
}
else if(random==1) {
horse2++;
}
else if(random==2) {
horse3++;
}
else if(random==3) {
horse4++;
}
cout<<"比賽進行中"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=horse1; i++) {
cout<<" ";
}
cout<<"◆"<<endl;
for(int i=1; i<=horse2; i++) {
cout<<" ";
}
cout<<"★"<<endl;
for(int i=1; i<=horse3; i++) {
cout<<" ";
}
cout<<"▲"<<endl;
for(int i=1; i<=horse4; i++) {
cout<<" ";
}
cout<<"●"<<endl;
system("cls");
}
times++;
system("cls");
cout<<"比賽結束! 由 ";
if(horse1 == 75) {
cout<< "◆" << "先馳得點" << endl;
}
else if (horse2 == 75) {
cout<< "★" << "先馳得點" << endl;
}
else if (horse3 == 75) {
cout<< "▲" << "先馳得點" << endl;
}
else if (horse4 == 75) {
cout<< "●" << "先馳得點" << endl;
}
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=horse1; i++) {
cout<<" ";
}
cout<<"◆"<<endl;
for(int i=1; i<=horse2; i++) {
cout<<" ";
}
cout<<"★"<<endl;
for(int i=1; i<=horse3; i++) {
cout<<" ";
}
cout<<"▲"<<endl;
for(int i=1; i<=horse4; i++) {
cout<<" ";
}
cout<<"●"<<endl;
system("pause");
}
system("pause");
return 0;
}
複製代碼
TOP
發短消息
加為好友
張凱婷
當前離線
UID
67827
帖子
120
精華
0
積分
0
閱讀權限
10
在線時間
28 小時
註冊時間
2017-2-2
最後登錄
2020-8-4
新手上路
5
#
張凱婷
發表於 2017-10-24 19:12
|
只看該作者
#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int main()
{
int times=1;
while(true)
{
int horse1=0, horse2=0, horse3=0, horse4=0, random=0;
int balance=0;
int option=0;
int buyin=0;
while(option == 0 or option ==1)
{
srand(time(NULL));
system("cls");
cout<<"「好事成雙」賽馬場 " << "第 " <<times << "局 "<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
cout<<"◆"<<endl;
cout<<"★"<<endl;
cout<<"▲"<<endl;
cout<<"●"<<endl;
cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
cin>>option;
if(option==1)
{
cout<<"買入: ";
cin>>buyin;
balance+=buyin;
}
system("pause");
system("cls");
}
while(horse1!=75 && horse2!=75 && horse3!=75 && horse4!=75)
{
random=rand()%4;
if(random==0) {
horse1++;
}
else if(random==1) {
horse2++;
}
else if(random==2) {
horse3++;
}
else if(random==3) {
horse4++;
}
cout<<"比賽進行中"<<endl;
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=horse1; i++) {
cout<<" ";
}
cout<<"◆"<<endl;
for(int i=1; i<=horse2; i++) {
cout<<" ";
}
cout<<"★"<<endl;
for(int i=1; i<=horse3; i++) {
cout<<" ";
}
cout<<"▲"<<endl;
for(int i=1; i<=horse4; i++) {
cout<<" ";
}
cout<<"●"<<endl;
system("cls");
}
times++;
system("cls");
cout<<"比賽結束! 由 ";
if(horse1 == 75) {
cout<< "◆" << "先馳得點" << endl;
}
else if (horse2 == 75) {
cout<< "★" << "先馳得點" << endl;
}
else if (horse3 == 75) {
cout<< "▲" << "先馳得點" << endl;
}
else if (horse4 == 75) {
cout<< "●" << "先馳得點" << endl;
}
cout<<"------------------------------------------------------------------------| 終點"<<endl;
for(int i=1; i<=horse1; i++) {
cout<<" ";
}
cout<<"◆"<<endl;
for(int i=1; i<=horse2; i++) {
cout<<" ";
}
cout<<"★"<<endl;
for(int i=1; i<=horse3; i++) {
cout<<" ";
}
cout<<"▲"<<endl;
for(int i=1; i<=horse4; i++) {
cout<<" ";
}
cout<<"●"<<endl;
system("pause");
}
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 分享給朋友]