標題:
[作業] 吃角子老虎機 - 中獎機率評估 (二)
[打印本頁]
作者:
tonyh
時間:
2012-2-11 17:28
標題:
[作業] 吃角子老虎機 - 中獎機率評估 (二)
本帖最後由 tonyh 於 2012-2-18 16:10 編輯
測試看看大約要跑幾次才能拉中二獎: 任兩欄位出現7
本帖隱藏的內容需要回復才可以瀏覽
作者:
t8155745
時間:
2012-2-11 17:45
本帖最後由 t8155745 於 2012-2-18 16:13 編輯
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int a,b,c,run=0;
cout<<"$$$吃角子老好機中獎機率評估程式$$$"<<endl;
cout<<"中獎規則說明:"<<endl;
cout<<"任一欄出現7獎金兩倍"<<endl;
cout<<"任兩欄出現7獎金十倍"<<endl;
cout<<"三欄出現7獎金一百倍"<<endl;
cout<<"本次測驗方式:試試看大約要跑幾次才能拉中第二特獎,兩欄出現7"<<endl;
system("pause");
srand(time(NULL));
while(true)
{
run++;
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)||(c==7 && a==7 && b!=7) )
{
break;
}
}
cout<<"共"<<run<< "次";
system("pause");
return 0;
}
複製代碼
作者:
t3742238
時間:
2012-2-18 11:53
本帖最後由 t3742238 於 2012-2-18 16:14 編輯
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
int a,b,c;
int run=0;
cout<<"$$$ 吃角子老虎機中獎機率評估程式 $$$"<<endl;
cout<<"中獎規則說明:"<<endl;
cout<<"任一欄出現 7-->您投下的賭注成兩倍"<<endl;
cout<<"任兩欄出現 7-->您投下的賭注成十"<<endl;
cout<<"三欄現 7-->您投下的賭注成一百"<<endl;
cout<<"本次測試方式:式大約要跑幾次才能拉中第二獎;"<<endl;
system("pause");
srand(time(NULL));
while(true)
{
run++;
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))
{
break;
}
}
cout<<"共有"<<run<<"次"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2012-2-18 15:15
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int a, b, c;
int run=0 ;
int rase=0;
cout<<"$$$吃角子老虎機評估中獎機率程式$$$"<<endl;
cout<<"~中獎規則說明~"<<endl;
cout<<"任一欄出現一個7--> 獎金2倍 "<<endl;
cout<<"任兩欄出現兩個7--> 獎金10倍 "<<endl;
cout<<"三欄都出現7--> 獎金100倍 "<<endl;
cout<<"本次測試 試試看要轉幾次才會轉到第一特獎777 "<<endl;
system("pause");
srand(time(NULL));
while(true)
{
run++ ;
a=rand()%10;
b=rand()%10;
c=rand()%10;
cout<<a<<" "<<b<<" "<<c<<" "<<endl;
if(a==7 && b==7 && c==7)
{
break;
}
}
cout<<"~~~這是第一次轉到777~~~"<<endl;
cout<<""<<run<<"次"<<endl;
system("pause");
srand(time(NULL));
while(true)
{
rase++ ;
a=rand()%10;
b=rand()%10;
c=rand()%10;
cout<<a<<" "<<b<<" "<<c<<" "<<endl;
if(a==7 && b==7 && c==7)
{
break;
}
}
cout<<"~~~這是第二次轉到777~~~"<<endl;
cout<<"第一次跑了"<<rase<<"次才轉到777"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2012-2-18 16:13
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int a, b, c;
int run=0 ;
cout<<"$$$吃角子老虎機評估中獎機率程式$$$"<<endl;
cout<<"~中獎規則說明~"<<endl;
cout<<"任一欄出現一個7--> 獎金2倍 "<<endl;
cout<<"任兩欄出現兩個7--> 獎金10倍 "<<endl;
cout<<"三欄都出現7--> 獎金100倍 "<<endl;
cout<<"本次測試 試試看要轉幾次才會轉到第二特獎777 "<<endl;
system("pause");
srand(time(NULL));
while(true)
{
run++ ;
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))
{
break;
}
}
cout<<"共計"<<run<<"次"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2012-2-18 16:14
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int a, b, c;
int run=0 ;
cout<<"$$$吃角子老虎機評估中獎機率程式$$$"<<endl;
cout<<"~中獎規則說明~"<<endl;
cout<<"任一欄出現一個7--> 獎金2倍 "<<endl;
cout<<"任兩欄出現兩個7--> 獎金10倍 "<<endl;
cout<<"三欄都出現7--> 獎金100倍 "<<endl;
cout<<"本次測試 試試看要轉幾次才會轉到第三特獎777 "<<endl;
system("pause");
srand(time(NULL));
while(true)
{
run++ ;
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))
{
break;
}
}
cout<<"共計"<<run<<"次"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2012-2-18 16:16
include<iostream>
using namespace std;
int main()
{
int a,b,c;
int run=0;
cout<<"$$$支票回收機$$$"<<endl;
cout<<"遊戲規則說明:"<<endl;
cout<<"凡是任一欄出現7,獎金雙倍"<<endl;
cout<<"凡是任兩欄出現7,獎金十倍"<<endl;
cout<<"凡是任三欄都出現7,獎金一百倍"<<endl;
cout<<"本次測驗方式: 試試看要多少次才能拉中第二獎"<<endl;
system("pause");
srand(time(NULL));
while(true)
{
run++;
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))
{
break;
}
}
cout<<"共計"<<run<<"次"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2012-2-18 16:28
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int a, b, c;
int run=0;
cout<<"$$$ 吃角子老虎機中獎機率評估程式 $$$"<<endl;
cout<<"中獎規則說明:"<<endl;
cout<<"任一欄出現7 --> 獎金變兩倍"<<endl;
cout<<"任兩欄出現7 --> 獎金變十倍"<<endl;
cout<<"三欄都出現7 --> 獎金變一百倍"<<endl;
cout<<"本次測試方式: 測試看看大約要跑幾次才能拉中第二特獎任兩欄出現7"<<endl;
system("pause");
srand(time(NULL));
while(true)
{
run++;
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))
{
break;
}
}
cout<<"共計"<<run<<"次!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2