標題:
[隨堂測驗] 賽馬程式 (三)
[打印本頁]
作者:
李泳霖
時間:
2021-10-16 09:48
標題:
[隨堂測驗] 賽馬程式 (三)
本帖最後由 李泳霖 於 2021-10-23 15:40 編輯
1. 在比賽首頁顯示第幾局
2. 在比賽結束頁顯示哪一位選手勝出
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
int n=1;
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;
system("pause");
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;
}
複製代碼
作者:
李泳霖
時間:
2021-10-16 09:48
此帖僅作者可見
作者:
黃昱齊
時間:
2021-10-16 17:14
此帖僅作者可見
作者:
許晏睿
時間:
2021-10-16 17:15
此帖僅作者可見
作者:
周桓宇
時間:
2021-10-16 17:30
此帖僅作者可見
作者:
陳佑俊
時間:
2021-10-16 17:30
此帖僅作者可見
作者:
富溢
時間:
2021-10-16 17:31
此帖僅作者可見
作者:
江家同
時間:
2021-10-16 18:59
此帖僅作者可見
作者:
江家同
時間:
2021-10-16 19:04
此帖僅作者可見
作者:
江家同
時間:
2021-10-16 19:10
此帖僅作者可見
作者:
江家同
時間:
2021-10-16 19:19
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2