急~求帮忙写个简单的关于猜投掷骰子的PYTHON程序!!QAQ
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了急~求帮忙写个简单的关于猜投掷骰子的PYTHON程序!!QAQ相关的知识,希望对你有一定的参考价值。
要求是:让玩家猜五个骰子(数字1-6)一起投掷出得数的总和 界面显示的是 “欢迎” 请输入玩家名称,请输入你猜测的数字,猜对了输出 “对了“,没对就是”你输了‘
本身是要做网页 里面的一个部分就是这个python程序 需要和一个html联系
谢谢~!!!!!QAQ
#! /user/bin/python
# filename: dicegame.py
import random
total = int(input ('please input your guess number for sum of 6 DICE!'))# int number input.
print ('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~')
print ('Your lucky number is ',total)
dicenum = 0 # define one integer for sum of 6 dice numbers;
L = [] # define one list for dice number display;
for i in range(6):
r = random.randint(1,6) # random function to create number between [1,6]
L.append(r)
dicenum += r
print('The dices shows %s ! \nTotal dice summary is %d' % (L, dicenum))
if total == dicenum: # judge guess num againt real summary;
print('\nYou win!')
else:
print('\nPity that you miss it, how about try next lucky?')本回答被提问者采纳
LightOJ 1248 - Dice (III) 给一个质地均匀的n的骰子, 求投掷出所有点数至少一次的期望次数。(概率)
题意:http://www.lightoj.com/volume_showproblem.php?problem=1248
投掷出第一个未出现的点数的概率为n/n = 1, 因为第一次投掷必然是未出现的。
第二个未出现的点数第一次出现的概率为 (n - 1) / n,因为有一个已经投掷出现过。
第i个未出现的点数第一次出现的概率为 (n - i) / i, 这满足几何分布。
其期望E = 1/p
所以期望为n *(1 + 1 / 2 + 1 / 3 + ... 1 / n)。
#include<cstdio> #include<cstring> #include<algorithm> #include<iostream> #include<queue> #include<map> #include<vector> #include<math.h> #include<string> using namespace std; #define INF 0x3f3f3f3f #define LL long long #define N 100006 #define Lson rood<<1 #define Rson rood<<1|1 double q[N]; void Init() { q[0]=0; for(int i=1;i<N;i++) q[i]=q[i-1]+1.0/i; } int main() { int T,n,t=1; Init(); scanf("%d",&T); while(T--) { scanf("%d",&n); printf("Case %d: %.6f\n",t++,1.0*q[n]*n); } return 0; }
以上是关于急~求帮忙写个简单的关于猜投掷骰子的PYTHON程序!!QAQ的主要内容,如果未能解决你的问题,请参考以下文章
LightOJ 1248 - Dice (III) 给一个质地均匀的n的骰子, 求投掷出所有点数至少一次的期望次数。(概率)