返回列表 發帖

吃角子老虎機 - 中獎機率評估 (四)

本帖最後由 tonyh 於 2012-2-18 17:37 編輯

換一種測試方式, 測試一百次, 並以百分比的方式表示中三獎(任一欄位出現7)的機率.
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.    int a, b, c;
  8.    int run=1;
  9.    float three=0;
  10.    int rate;
  11.    cout<<"$$$ 吃角子老虎機中獎機率評估程式 $$$"<<endl;
  12.    cout<<"中獎規則說明:"<<endl;
  13.    cout<<"任一欄出現7 --> 獎金變兩倍"<<endl;
  14.    cout<<"任兩欄出現7 --> 獎金變十倍"<<endl;
  15.    cout<<"三欄都出現7 --> 獎金變一百倍"<<endl;
  16.    cout<<"本次測試方式: 測試一百次, 並以百分比的方式表示中三獎, 任一欄位出現7的機率"<<endl;
  17.    srand(time(NULL));
  18.    while(run<=100)
  19.    {
  20.        a=rand()%10;
  21.        b=rand()%10;
  22.        c=rand()%10;
  23.        cout<<a<<" "<<b<<" "<<c<<endl;
  24.        if((a==7 && b!=7 && c!=7)||(a!=7 && b==7 && c!=7)||(a!=7 && b!=7 && c==7))
  25.        {
  26.             three++;
  27.        }
  28.        run++;
  29.    }
  30.    rate=three/100*100;
  31.    cout<<"在這一百次的測試中, 三獎中了"<<three<<"次, 中獎機率為"<<rate<<"%"<<endl;   
  32.    system("pause");
  33.    return 0;
  34. }
複製代碼

本帖最後由 t2364705 於 2012-2-24 19:21 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int a, b, c;
  8.     int run=1;
  9.     float three=0;
  10.     int rate=0;
  11.     cout<<"*** 吃角子老虎機中獎機率評估程式 ***"<<endl;
  12.    cout<<"中獎規則說明:"<<endl;
  13.    cout<<"任一欄出現3 --> 獎金變兩倍"<<endl;
  14.    cout<<"任兩欄出現3 --> 獎金變十倍"<<endl;
  15.    cout<<"三欄都出現3--> 獎金變一百倍"<<endl;
  16.    cout<<"本次測驗方式:測驗一百次,並以百分比的方式表示中三獎(任一欄位出現3)的機率"<<endl;
  17.    srand(time(NULL));
  18.    while(run<=100)
  19.    {
  20.    a=rand()%10;
  21.    b=rand()%10;
  22.    c=rand()%10;
  23.    cout<<a<<" "<<b<<" "<<c<<endl;
  24.    if((a!=3 && b!=3 && c==3)||(a==3 && b!=3 && c!=3)||(a!=3 && b==3 && c!=3))
  25.    {
  26.    three++;
  27.    }
  28.    run++;
  29. }
  30.    rate=three/run*100;         
  31.    cout<<"在這一百次測試中共中三獎"<<three<<"次,中獎率是" <<rate<<"%";   
  32. system("pause");   
  33. return 0;   
  34. }
複製代碼

TOP

  1. #include<iostream>   
  2. #include<cstdlib>   
  3. #include<ctime>      
  4. using namespace std;
  5. int main()
  6. {   
  7.     int a, b ,c;
  8.     float run=1,three=0;
  9.     int rate;
  10.     cout<<"$$$ 吃角子老虎機中獎機率評估程式 $$$"<<endl;
  11.     cout<<"中獎規則說明:"<<endl;
  12.     cout<<"任一欄出現 7-->您投下的賭注成兩倍"<<endl;
  13.     cout<<"任兩欄出現 7-->您投下的賭注成十"<<endl;
  14.     cout<<"三欄現 7-->您投下的賭注成一百"<<endl;
  15.     cout<<"本次測試方式:測試100次中三獎的機率"<<endl;
  16.     while(run<=100)
  17.     {
  18.                    run++;
  19.                    a=rand()%10;  
  20.                    b=rand()%10;
  21.                    c=rand()%10;
  22.                    cout<<a<<" "<<b<<" "<<c<<endl;
  23.                    if((a==7 && b!=7 && c!=7)||(a!=7 && b==7 && c!=7)||(a!=7 && b!=7 && c==7))
  24.                    {
  25.                                three++;
  26.                    }
  27.                    run++;
  28.     }
  29.     rate=three/run*100;
  30.     cout<<"在這一百次中您的中獎機率是"<<rate<<"%"<<endl;
  31.    

  32.     system("pause");
  33.     return 0;   
  34. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int a, b, c;
  8.     float run=1;
  9.     int three=0;
  10.     int rate;
  11.     cout<<"$$$吃角子老虎機評估中獎機率程式$$$"<<endl;
  12.     cout<<"~中獎規則說明~"<<endl;
  13.     cout<<"任一欄出現一個7--> 獎金2倍 "<<endl;
  14.     cout<<"任兩欄出現兩個7--> 獎金10倍 "<<endl;
  15.     cout<<"三欄都出現7--> 獎金100倍 "<<endl;
  16.     cout<<"本次測試方式 測試100次任一欄位出現7的機率用百分比的方式表示 "<<endl;
  17.     srand(time(NULL));   
  18.     while(run<=100)
  19.     {
  20.         run++;
  21.         a=rand()%10;
  22.         b=rand()%10;
  23.         c=rand()%10;
  24.         cout<<a<<" "<<b<<" "<<c<<endl;  
  25.         if((a==7 && b!=7 && c!=7)||(a!=7 && b==7 && c!=7)||(a!=7 && b!=7 && c==7))
  26.         {
  27.                  three++;
  28.         }
  29.            run++;
  30.     }
  31.     rate=three/run*100;
  32.     cout<<"在這100次中三獎的機率是"<<rate<<"%"<<"共中了"<<three<<"次"<<endl;      
  33.   system("pause");   
  34.   return 0;
  35. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.    int a, b, c;
  8.    int run=1;
  9.    float three=0;
  10.    int rate;
  11.    cout<<"$$$ 吃角子老虎機中獎機率評估程式 $$$"<<endl;
  12.    cout<<"中獎規則說明:"<<endl;
  13.    cout<<"任一欄出現7 --> 獎金變兩倍"<<endl;
  14.    cout<<"任兩欄出現7 --> 獎金變十倍"<<endl;
  15.    cout<<"三欄都出現7 --> 獎金變一百倍"<<endl;
  16.    cout<<"本次測試方式: 測試一百次, 並以百分比的方式表示中三獎, 任一欄位出現7的機率"<<endl;
  17.    srand(time(NULL));
  18.    while(run<=100)
  19.    {
  20.        a=rand()%10;
  21.        b=rand()%10;
  22.        c=rand()%10;
  23.        cout<<a<<" "<<b<<" "<<c<<endl;
  24.        if((a==7 && b!=7 && c!=7)||(a!=7 && b==7 && c!=7)||(a!=7 && b!=7 && c==7))
  25.    {
  26.        three++;
  27.    }
  28.        run++;
  29.    }
  30.    rate=three/100*100;
  31.    cout<<"在這一百次的測試中, 三獎中了"<<three<<"次, 中獎機率為"<<rate<<"%"<<endl;   
  32.    system("pause");
  33.    return 0;
  34. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int a, b, c;
  8.     int run=1;
  9.     float three=0;
  10.     int rate=0;

  11.     cout<<"$$$ 吃角子老虎機中獎機率評估程式 $$$"<<endl;

  12.    cout<<"中獎規則說明:"<<endl;


  13.    cout<<"任一欄出現7 --> 獎金變兩倍"<<endl;

  14.    cout<<"任兩欄出現7 --> 獎金變十倍"<<endl;

  15.    cout<<"三欄都出現7 --> 獎金變一百倍"<<endl;

  16.    cout<<"本次測驗方式:測驗一百次,並以百分比的方式表示中三獎(任一欄位出現7)的機率"<<endl;
  17.    srand(time(NULL));
  18.    while(run<=100)
  19.    {
  20.    a=rand()%10;
  21.    b=rand()%10;
  22.    c=rand()%10;
  23.    cout<<a<<" "<<b<<" "<<c<<endl;
  24.    if((a!=7 && b!=7 && c==7)||(a==7 && b!=7 && c!=7)||(a!=7 && b==7 && c!=7))
  25.    {
  26.    three++;
  27.    }
  28.    
  29.    run++;
  30. }
  31.    rate=three/run*100;         
  32.    cout<<"在這一百次測試中共中三獎"<<three<<"次,中獎率是" <<rate<<"%";   
  33.                


  34. system("pause");   
  35. return 0;   
  36. }
複製代碼

TOP

返回列表