返回列表 發帖

2024/12/13 課堂重點(昀杰)

本帖最後由 郭竑志 於 2024-12-13 19:26 編輯

[作業檢查]
猜拳遊戲 (三)
跑馬燈 (二)
賽馬程式 (七)
[課程重點]
電費計算機 (一)

產生介於指定範圍內的隨機亂數 (五)
產生不重複之隨機亂數
產生不重複之隨機亂數 (二)
[今日作業]
電費計算機 (二)
產生不重複之隨機亂數 (三)
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {   int d=1;
  7.     int m=0;
  8.     re:
  9.     system("cls");
  10.     int s[]={0,0,0,0};
  11.     srand(time(NULL));
  12.     cout<<"「好事成雙」賽馬場,第"<<d<<"回"<<endl;
  13.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     cout<<"balance"<<m<<"dollars"<<endl;
  19.     cout<<"1.buy"<<endl;
  20.     int tmp;
  21.    cin>>tmp;
  22.    if(tmp==1)
  23.    {
  24.        cin>>tmp;
  25.        m+=tmp;
  26.        system("cls");
  27.         cout<<"「好事成雙」賽馬場,第"<<d<<"回"<<endl;
  28.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  29.         cout<<"◆"<<endl;
  30.         cout<<"★"<<endl;
  31.         cout<<"▲"<<endl;
  32.         cout<<"●"<<endl;
  33.         cout<<"balance"<<m<<"dollars"<<endl;
  34.         cout<<"1.buy"<<endl;
  35.     }
  36.     d=d+1;
  37.     system("pause");
  38.     while(true)
  39.     {
  40.         system("cls");
  41.         int r=rand()%4;   //0~3
  42.         s[r]++;
  43.         cout<<"比賽進行中"<<endl;
  44.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  45.         for(int i=0; i<=s[0]; i++)
  46.             cout<<" ";
  47.         cout<<"◆"<<endl;
  48.         for(int i=0; i<=s[1]; i++)
  49.             cout<<" ";
  50.         cout<<"★"<<endl;
  51.         for(int i=0; i<=s[2]; i++)
  52.             cout<<" ";
  53.         cout<<"▲"<<endl;
  54.         for(int i=0; i<=s[3]; i++)
  55.             cout<<" ";
  56.         cout<<"●"<<endl;
  57.         if(s[r]==73)
  58.             break;
  59.         _sleep(0.001);
  60.     }
  61.     system("cls");
  62.     cout<<"比賽結束"<<endl;
  63.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  64.     for(int i=0; i<=s[0]; i++)
  65.         cout<<" ";
  66.     cout<<"◆"<<endl;
  67.     for(int i=0; i<=s[1]; i++)
  68.         cout<<" ";
  69.     cout<<"★"<<endl;
  70.     for(int i=0; i<=s[2]; i++)
  71.         cout<<" ";
  72.     cout<<"▲"<<endl;
  73.     for(int i=0; i<=s[3]; i++)
  74.         cout<<" ";
  75.     cout<<"●"<<endl;
  76.     system("pause");
  77.     goto re;
  78.     return 0;
  79. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {   int d=1;
  7.     int m=0;
  8.     re:
  9.     system("cls");
  10.     int s[]={0,0,0,0};
  11.     srand(time(NULL));
  12.     cout<<"「好事成雙」賽馬場,第"<<d<<"回"<<endl;
  13.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     cout<<"balance"<<m<<"dollars"<<endl;
  19.     cout<<"1.buy   2.bet"<<endl;
  20.     int t,tmp;
  21.    cin>>t;
  22.    if(t==1)
  23.    {
  24.        cin>>tmp;
  25.        m+=tmp;
  26.        system("cls");
  27.         cout<<"「好事成雙」賽馬場,第"<<d<<"回"<<endl;
  28.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  29.         cout<<"◆"<<endl;
  30.         cout<<"★"<<endl;
  31.         cout<<"▲"<<endl;
  32.         cout<<"●"<<endl;
  33.         cout<<"balance"<<m<<"dollars"<<endl;
  34.         cout<<"1.buy   2.bet"<<endl;
  35.     }
  36.     else if(t==2){
  37.          cin>>tmp;
  38.          if(tmp>m)
  39.          {
  40.              goto re;

  41.          }
  42.          if(tmp<0)
  43.          {
  44.              goto re;

  45.          }
  46.          else{
  47.        m-=tmp;
  48.        cout<<"「好事成雙」賽馬場,第"<<d<<"回"<<endl;
  49.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  50.         cout<<"◆"<<endl;
  51.         cout<<"★"<<endl;
  52.         cout<<"▲"<<endl;
  53.         cout<<"●"<<endl;
  54.         cout<<"balance"<<m<<"dollars"<<endl;
  55.         cout<<"1.buy   2.bet"<<endl;}
  56.     }
  57.     d=d+1;
  58.     system("pause");
  59.     while(true)
  60.     {
  61.         system("cls");
  62.         int r=rand()%4;   //0~3
  63.         s[r]++;
  64.         cout<<"比賽進行中"<<endl;
  65.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  66.         for(int i=0; i<=s[0]; i++)
  67.             cout<<" ";
  68.         cout<<"◆"<<endl;
  69.         for(int i=0; i<=s[1]; i++)
  70.             cout<<" ";
  71.         cout<<"★"<<endl;
  72.         for(int i=0; i<=s[2]; i++)
  73.             cout<<" ";
  74.         cout<<"▲"<<endl;
  75.         for(int i=0; i<=s[3]; i++)
  76.             cout<<" ";
  77.         cout<<"●"<<endl;
  78.         if(s[r]==73)
  79.             break;
  80.         _sleep(0.001);
  81.     }
  82.     system("cls");
  83.     cout<<"比賽結束"<<endl;
  84.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  85.     for(int i=0; i<=s[0]; i++)
  86.         cout<<" ";
  87.     cout<<"◆"<<endl;
  88.     for(int i=0; i<=s[1]; i++)
  89.         cout<<" ";
  90.     cout<<"★"<<endl;
  91.     for(int i=0; i<=s[2]; i++)
  92.         cout<<" ";
  93.     cout<<"▲"<<endl;
  94.     for(int i=0; i<=s[3]; i++)
  95.         cout<<" ";
  96.     cout<<"●"<<endl;
  97.     system("pause");
  98.     goto re;
  99.     return 0;
  100. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int m,c;
  8.     float sum=0;
  9. cout<<"錢,月";
  10.     cin>>m;
  11.     cin>>c;
  12.     if(c<6||c>9)
  13.     {
  14.         if(m>=1000)
  15.         {
  16.             sum=(m-1000)*5.48;
  17.                 m=m%1000;
  18.         }
  19.         if(m>=701)
  20.         {
  21.             sum=(m-701)*4.6+sum;
  22.                 m=m%701;
  23.         }
  24.         if(m>=501)
  25.         {
  26.             sum=(m-501)*3.94+sum;
  27.                 m=m%501;
  28.         }
  29.         if(m>=331)
  30.         {
  31.             sum=(m-1000)*2.89+sum;
  32.                 m=m%331;
  33.         }
  34.         if(m>=121)
  35.         {
  36.             sum=(m-1000)*2.10+sum;
  37.                 m=m%121;
  38.         }
  39.         if(m>=0)
  40.         {
  41.             sum=m*1.63+sum;
  42.         }
  43.     }
  44. else
  45.     {
  46.         if(m>=1000)
  47.         {
  48.             sum=(m-1000)*6.99+sum;
  49.                 m=m%1000;
  50.         }
  51.         if(m>=701)
  52.         {
  53.             sum=(m-701)*5.66+sum;
  54.                 m=m%701;
  55.         }
  56.         if(m>=501)
  57.         {
  58.             sum=(m-501)*4.80+sum;
  59.                 m=m%501;
  60.         }
  61.         if(m>=331)
  62.         {
  63.             sum=(m-1000)*3.52+sum;
  64.                 m=m%331;
  65.         }
  66.         if(m>=121)
  67.         {
  68.             sum=(m-1000)*2.38+sum;
  69.                 m=m%121;
  70.         }
  71.         if(m>=0)
  72.         {
  73.             sum=m*1.63+sum;
  74.         }
  75.     }

  76. cout<<sum;


  77. }
複製代碼

TOP

  1. #include <bits/stdc++.h>
  2. #include<ctime>
  3. using namespace std;
  4. int main()
  5. {
  6.     string a[5]= {"a","b","c","d","e"};
  7.     int b[3];
  8.     srand(time(0));
  9.     int p;
  10.     for(int i=0; i<3; i++)
  11.     {
  12.      re:
  13.         b[i]=rand()%5;

  14.         for(int j=0; j<i; j++)
  15.         {
  16.             if(b[i]==b[j])
  17.             {
  18.                 goto re;
  19.             }
  20.         }

  21.     }
  22.     for(int k=0; k<3; k++)
  23.     {
  24.         cout<<a[b[k]]<<endl;
  25.     }
  26.     return 0;

  27. }
複製代碼

TOP

返回列表