標題:
[隨堂測驗] 賽馬程式 (三)
[打印本頁]
作者:
李泳霖
時間:
2024-9-14 15:38
標題:
[隨堂測驗] 賽馬程式 (三)
本帖最後由 李泳霖 於 2024-9-14 15:40 編輯
1. 在比賽首頁顯示第幾局
2. 在比賽結束頁顯示哪一位選手勝出
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
re:
system("cls");
srand(time(NULL));
int s[]={0,0,0,0};
string p[]={"◆","★","▲","●"};
int r=0;
cout<<"「好事成雙」賽馬場"<<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<<"比賽結束"<<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");
goto re;
return 0;
}
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
作者:
黃荏澧
時間:
2024-9-14 16:25
此帖僅作者可見
作者:
孫苡瑄
時間:
2024-9-14 16:41
此帖僅作者可見
作者:
張馭棋
時間:
2024-9-14 16:44
此帖僅作者可見
作者:
鄧塏諺
時間:
2024-9-14 16:44
此帖僅作者可見
作者:
陳子芳
時間:
2024-9-14 16:45
此帖僅作者可見
作者:
翁品皓
時間:
2024-9-14 16:55
此帖僅作者可見
作者:
王韋鈞
時間:
2024-9-14 16:58
此帖僅作者可見
作者:
翁祐安
時間:
2024-9-27 20:46
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2