標題:
2023/07/08 課堂重點(品禎)
[打印本頁]
作者:
鄭繼威
時間:
2023-7-8 11:59
標題:
2023/07/08 課堂重點(品禎)
本帖最後由 鄭繼威 於 2023-7-8 16:53 編輯
2023/07/08 課程重點
上次
[複習]
抽籤程式 (一)
[隨堂測驗] 抽籤程式 (二)
[上課]
1.
跑馬燈 (一) - _sleep() 函式
2.
跑馬燈 (二)
3.
[隨堂測驗] 跑馬燈 (三)
4.
賽馬程式 (一)
5.
賽馬程式 (二)
[作業]
多多複習C++的東西
作者:
黃品禎
時間:
2023-7-8 17:16
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
while(true)
{
system("cls");
int s[]={0,0,0,0};
string n[]={"◆","★","▲","●"};
srand(time(NULL));
cout<<"「好事成雙」賽馬場"<<endl;
cout<<"-------------------------------------------------------------------------| 終點"<<endl;
for(int j=0;j<3;j++)
{
cout<<n[j]<<endl;
}
while(true)
{
system("cls");
int r=rand()%4;
s[r]++;
cout<<"比賽進行中"<<endl;
cout<<"-------------------------------------------------------------------------| 終點"<<endl;
for(int k=0; k<=3; k++)
{
for(int i=0; i<=s[k]; i++)
{
cout<<" ";
}
cout<<n[k]<<endl;
}
if(s[r]==72)
break;
_sleep(1);
}
system("cls");
cout<<"比賽結束"<<endl;
cout<<"-------------------------------------------------------------------------| 終點"<<endl;
//印空格(看進度是多少就印多少空格)
//把馬印出來
for(int k=0; k<=3; k++)
{
for(int i=0; i<=s[k]; i++)
{
cout<<" ";
}
cout<<n[k]<<endl;
}
system("pause");
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2