標題:
[作業] 吃角子老虎機 - 中獎機率評估 (五)
[打印本頁]
作者:
tonyh
時間:
2012-2-18 17:10
標題:
[作業] 吃角子老虎機 - 中獎機率評估 (五)
本帖最後由 tonyh 於 2012-2-25 16:20 編輯
當測試次數越多, 所得到的評估值也越精確,
改良今天課堂上教的程式, 讓使用者能自行輸入欲測試的次數,
以百分比的方式表示中三獎 (任一欄位出現7) 的機率.
本帖隱藏的內容需要回復才可以瀏覽
作者:
t3742238
時間:
2012-2-25 11:12
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
int a,b,c;
int run=1;
float three=0;
int rate;
int d;
cout<<"$$ 吃角子老虎機中獎機率評估程式 $$"<<endl;
cout<<"中獎規則說明:"<<endl;
cout<<"任一欄出現 7-->您投下的賭注成兩倍"<<endl;
cout<<"任兩欄出現 7-->您投下的賭注成十"<<endl;
cout<<"三欄現 7-->您投下的賭注成一百"<<endl;
cout<<"請輸入您要測試的次數"<<endl;
cin>>d;
system("pause");
srand(time(NULL));
while(run<=d)
{
a=rand()%10;
b=rand()%10;
c=rand()%10;
cout<<a<<" "<<b<<" "<<c<<endl;
if((a==7 && b!=7 && c!=7)||(a!=7 && b==7 && c!=7)||(a!=7 && b!=7 && c==7))
{
three++;
}
run++;
}
rate=three/d*100;
cout<<"在這"<<d<<"次測試中共中三獎"<<three<<"次,中獎率是" <<rate<<"%";
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2012-2-25 16:11
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int a, b, c;
int run=1;
float three=0;
int rate, tast;
cout<<"$$$ 吃角子老虎機中獎機率評估程式 $$$"<<endl;
cout<<"中獎規則說明:"<<endl;
cout<<"任一欄出現7 --> 獎金變兩倍"<<endl;
cout<<"任兩欄出現7 --> 獎金變十倍"<<endl;
cout<<"三欄都出現7 --> 獎金變一百倍"<<endl;
cout<<"本次測試方式: 讓使用者自行輸入預測數字, 並以百分比的方式表示中三獎, 任一欄位出現7的機率"<<endl;
cout<<"使用者請輸入您想要預測的次數: ";
cin>>tast;
srand(time(NULL));
while(run<=tast)
{
a=rand()%10;
b=rand()%10;
c=rand()%10;
cout<<a<<" "<<b<<" "<<c<<endl;
if((a==7 && b!=7 && c!=7)||(a!=7 && b==7 && c!=7)||(a!=7 && b!=7 && c==7))
{
three++;
}
run++;
}
rate=three/tast*100;
cout<<"在這"<<tast<<"次的測試中, 三獎中了"<<three<<"次, 中獎機率為"<<rate<<"%"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t8155745
時間:
2012-2-25 16:11
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int a, b, c;
int run=1;
float three=0;
int rate ,test;
cout<<"$$$ 吃角子老虎機中獎機率評估程式 $$$"<<endl;
cout<<"中獎規則說明:"<<endl;
cout<<"任一欄出現7 --> 獎金變兩倍"<<endl;
cout<<"任兩欄出現7 --> 獎金變十倍"<<endl;
cout<<"三欄都出現7 --> 獎金變一百倍"<<endl;
cout<<"本次測試方式: 讓使用者輸入欲測的次數 並以百分比的方式表示中三獎, 任一欄位出現7的機率"<<endl;
cout<<"請輸入測的次數:";
cin>>test;
srand(time(NULL));
while(run<=test)
{
a=rand()%10;
b=rand()%10;
c=rand()%10;
cout<<a<<" "<<b<<" "<<c<<endl;
if((a==7 && b!=7 && c!=7)||(a!=7 && b==7 && c!=7)||(a!=7 && b!=7 && c==7))
{
three++;
}
run++;
}
rate=three/test*100;
cout<<"在這"<<test<<"次的測試中, 三獎中了"<<three<<"次, 中獎機率為"<<rate<<"%"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2012-2-25 16:11
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int a, b, c;
int run=1;
float three=0;
int rate,test;
cout<<"$$$ 吃角子老虎機中獎機率評估程式 $$$"<<endl;
cout<<"中獎規則說明:"<<endl;
cout<<"任一欄出現7 --> 獎金變兩倍"<<endl;
cout<<"任兩欄出現7 --> 獎金變十倍"<<endl;
cout<<"三欄都出現7 --> 獎金變一百倍"<<endl;
cout<<"本次測試方式: 讓使用者自行輸入測式的次數, 並以百分比的方式表示中三獎, 任一欄位出現7的機率"<<endl;
cout<<"請輸入次數:";
cin>>test;
srand(time(NULL));
while(run<= test)
{
a=rand()%10;
b=rand()%10;
c=rand()%10;
cout<<a<<" "<<b<<" "<<c<<endl;
if((a==7 && b!=7 && c!=7)||(a!=7 && b==7 && c!=7)||(a!=7 && b!=7 && c==7))
{
three++;
}
run++;
}
rate=three/test*100;
cout<<"在這"<<test<<"次的測試中, 三獎中了"<<three<<"次, 中獎機率為"<<rate<<"%"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2012-2-25 16:11
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int a, b, c,x;
int run=1;
float three=0;
int rate;
cout<<"$$$ 吃角子老虎機中獎機率評估程式 $$$"<<endl;
cout<<"中獎規則說明:"<<endl;
cout<<"任一欄出現7 --> 獎金變兩倍"<<endl;
cout<<"任兩欄出現7 --> 獎金變十倍"<<endl;
cout<<"三欄都出現7 --> 獎金變一百倍"<<endl;
cout<<"本次測試方式: 測試一百次, 並以百分比的方式表示中三獎, 全部欄位出現7的機率"<<endl;
cout<<"輸入測試次數:"<<endl;
cin>>x;
srand(time(NULL));
while(run<=x)
{
a=rand()%10;
b=rand()%10;
c=rand()%10;
cout<<a<<" "<<b<<" "<<c<<endl;
if((a==7 && b==7 && c==7)||(a==7 && b==7 && c==7)||(a==7 && b==7 && c==7))
{
three++;
}
run++;
}
rate=three/100*100;
cout<<"在這"<<x<<"的測試中, 三獎中了"<<three<<"次, 中獎機率為"<<rate<<"%"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2