返回列表 發帖

[2/24 作業3]抽籤程式 (二)

本帖最後由 李泳霖 於 2024-3-2 10:04 編輯

延續 抽籤程式 (一) 的練習,使在接近顯示抽籤結果時,洗牌的速度漸漸慢下來。

抽籤程式v2.exe
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    string food[]={"漢堡","牛排","羊肉爐","意麵","大便","餿水"};
  7.    srand(time(NULL));
  8.    re:
  9.    system("cls");
  10.    cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  11.    cout<<"今天晚餐\吃什麼?"<<endl<<endl;
  12.    system("pause");
  13.    for(int i=1; i<=52; i++)
  14.    {
  15.         if(i%2==1)
  16.             cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  17.         else
  18.             cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  19.         cout<<food[rand()%6]<<"!"<<endl;
  20.         if(i<=30)
  21.             _sleep(20);
  22.         else
  23.             _sleep(20+(i-30)*(i-30));
  24.         system("cls");   
  25.    }
  26.    cout<<"吃: "<<food[rand()%6]<<"!"<<endl<<endl;
  27.    system("pause");
  28.    goto re;   
  29.    return 0;
  30. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表