Tagged Questions
The dice tag has no wiki summary.
15
votes
13answers
1k views
Evaluate dice rolling notation strings
Rules
Write a function that accepts string as a parameter, returning
evaluated value of expression in dice notation,
including addition and multiplication.
To clear the things up, here comes EBNF ...
7
votes
6answers
295 views
Roll a dice via e-mail
I have been asked this question, but failed to find an article that describe a good method. Instead I came out with my own method (see my answer below). However it is also possible that I merely came ...
7
votes
4answers
813 views
Dice odds: Simulating a game of Craps
My brother turns 21 in a couple of weeks and my parents and I are taking him to Las Vegas. For my 21st, I brought $200 to gamble in Vegas and came home with around $450, mostly from playing craps. I ...
5
votes
5answers
279 views
Dice Question (Full House and Straight recognition)
I'm making a dice game. There are 5 dice in which I have all the values for and I need to determine if they make up a full house (3 of one and 2 of another), small straight (1-4, 2-6 or 3-6) or a ...
4
votes
4answers
831 views
Parsing dice expressions (e.g. 3d6+5) in C#: where to start?
So I want to be able to parse, and evaluate, "dice expressions" in C#. A dice expression is defined like so:
<expr> := <expr> + <expr>
| <expr> - <expr>
...
3
votes
3answers
82 views
recursion resulting in extra unwanted data
I'm writing a module to handle dice rolling. Given x die of y sides, I'm trying to come up with a list of all potential roll combinations.
This code assumes 3 die, each with 3 sides labeled 1, 2, ...
3
votes
2answers
1k views
Calculating odds distribution with 6-sided dice
I'm trying to calculate the odds distribution of a changing number of 6-sided die rolls. For example, 3d6 ranges from 3 to 18 as follows:
3:1, 4:3, 5:6, 6:10, 7:15, 8:21, 9:25, 10:27, 11:27, 12:25, ...
3
votes
3answers
289 views
looping in unit test bad?
I have a unit test that relies on a random dice roll. I roll a 20 sided die and if the value is 20 it counts as a critical hit.
What I'm doing right now is rolling the 20 sided die up to 300 times. ...
3
votes
7answers
2k views
Combinitorics Counting Puzzle: Roll 20, 8-sided dice, what is the probability of getting at least 5 dice of the same value
Assume a game in which one rolls 20, 8-sided die, for a total number of 8^20 possible outcomes. To calculate the probability of a particular event occurring, we divide the number of ways that event ...
2
votes
2answers
115 views
AS3 OOP. How do I make an object move across a game board depending on the value of the dice?
I am creating a board game and I am using Object Oriented Programming with AS3. I created a movie clip with a circle that moves across the game board. There are 18 squares and 18 frames. I have a ...
2
votes
3answers
811 views
Random numbers for dice game [closed]
Possible Duplicate:
random string generation - two generated one after another give same results
I am writing a simple dice game for windows phone 7, that involves rolling two dice at the ...
2
votes
4answers
174 views
Number to the left/right on a dice?
I was wondering if there is a formula/trick to calculate what number is to the right or to the left on a standard 6-sided die if you know which number is on top and which is facing you.
Need it to ...
2
votes
8answers
511 views
Java setter, getter (rolling a die)
I have some questions about java. There are two questions in the code (I left them as comments).
Also what is the purpose of using setting and getting methods? Could you please explain it very ...
2
votes
3answers
262 views
Determine if a dice roll contains certain combinations?
I am writing a dice game simulator in Python. I represent a roll by using a list containing integers from 1-6. So I might have a roll like this:
[1,2,1,4,5,1]
I need to determine if a roll ...
2
votes
2answers
779 views
Generate a matrix of all possible outcomes for throwing n dice (ignoring order)
In cases where order does matter, it's rather easy to generate the matrix of all possible outcomes. One way for doing this is using expand.grid as shown here.
What if it doesn't?
If I'm right, the ...
2
votes
3answers
185 views
PHP choose the side a die has?
The php section of my code is not doing the correct operations
when the user submits his/her number, for example, if the user submits 5, I want the rand function to randomly output 5 as the number ...
2
votes
5answers
392 views
C# code only gives expected results on step through?
Ok so I have a dice throw app...
When I step through the code it functions normally and 'results' contains the correct number of throw results and they appear to be random, when I leave the code to ...
2
votes
4answers
2k views
Problem with random dice rolling in C# console application
I am writing dice roller program in C# console. I am giving two input
Enter the size of the dice and
Enter how times you want to play.
Suppose dice size is 6 and 10 times i have played.
...
2
votes
8answers
2k views
Determine Frequency of numbers showing up in dice rolls
For a game I'm trying to determine the frequency that a certain # will show up at a given # of dice being rolled. I know... that question seems odd. Let me try to explain it with real numbers.
So, ...
1
vote
2answers
61 views
Making a dice in ruby language
Im coding a dice in ruby in which when i rolled it, it would either come up north south east or west.
what im having trouble with is when i roll it how do i tell it to return to me one of these ...
1
vote
4answers
180 views
Does Java's Random Object create random numbers through equal opportunity?
I'm trying to write a short program that plays a dice game (normal 6 sided dice) for me. The first roll's number is added to the score. After the first roll, if I roll a 6 then the game stops and the ...
1
vote
3answers
144 views
Help with adding variable to self and random number (javascript)
I am making a simple dice roller, which seems like a good first project to me, and may help others learn javascript as well, and when you roll a die (with a button), it is supposed to add to the total ...
1
vote
0answers
218 views
Histogram help with random number generator
I can't figure out how to create a histogram. It needs to look like this:
1.***
2.*******
3.*********
and so on.
Could someone look at my code and maybe fix it or give me ideas
/*
* Dakota Dao
...
0
votes
2answers
90 views
How to return Average number of rolls from a dice?
I need to display the average number of rolls needed to get a six, and the number of sixes that average was based.
The problem I am having I think is with this part of the code? So I want the average ...
0
votes
2answers
59 views
Given two sets of varying number of mixed dice, how do I determine the statistical probability of that one set will roll higher then the other?
I am writing trying to write an API in C# for the statistical analysis of dice for role players. The problem I have hit is give 2 sets of dice, which is more likely to roll higher and at what ...
0
votes
2answers
128 views
Rolling dice application for iPhone apps
I am making an iPhone dice application and I wanted to create a button so that if I click it, it will generate a random number between 1 and 6 on the UITextField.
Can anyone help me out and give me a ...
0
votes
1answer
42 views
trying to count the number of times something comes up on a dice. ruby code
This is my code for a dice that shows a direction.
It shows either north, south, east or west when rolled.
I'm trying to figure out a way to count how many times each one of these appears anytime I ...
0
votes
3answers
31 views
How do I have a program reference an internal random result and apply it to a list to print a result?
Ok, I need some help here. I'm attempting to write a program that rolls a die internally (randrange), which is referenced to a list that will then print the result onto the screen
Example: User ...
0
votes
0answers
92 views
Python adding players to a game
Okay I'm writing a little game to practice my python since I'm learning, I've learned quite a bit over the past week, but with this certain game I'm puzzled.
its a dice rolling game (boring I know) ...
0
votes
4answers
300 views
How to use a Random number Generator in C#?
I created a Windows Forms application using Visual Studio Professional in C#. In my program I prompt the user to input the number of rolls he/she wants and then they press enter to get the numbers.
...
0
votes
2answers
119 views
simple question on dice poker in python
I'm following along a textbook example of building a dice poker game. Below is a snippet of code I don't quite understand but it does work. So in the while loop under the run method, the second ...
0
votes
5answers
347 views
craps in python
I'm trying to simulate n games of craps. The code seems to make sense to me but I never get the right result. For example, if I put in n = 5 i.e. fives games the wins and losses sum to something ...
0
votes
1answer
615 views
MATLAB Help - Rolling Dice Simulation
I have to write a script that uses the user input to roll a certain amount of dice, with a certain amount of sides, with a certain amount of rolls , and a certain amount of trials.
I have the whole ...
0
votes
1answer
78 views
assigning a value to an image
So I am trying to create a real simple dice game...more like a dice roller game and I have encountered a problem for which I have yet to find an answer. So obviously I have 6 images for the die ...
0
votes
2answers
223 views
Dice notation (recursive descent parsing implementation): a scanner without delimiter
I would like to build a recursive descent parsing implementation of the dice notation using the java Scanner if possible. I've previously opened a question about it , but it seemed that I had my ...
0
votes
2answers
290 views
Need some help with a dice rolling algorithm
How would I go about pseudocoding the algorithm for a method that:
Rolls a type of Die - 4 , 6 , 8 , 10 , or 12 sided
Can roll up to ten of this type of Die
If more than half of the die are 1's, ...
0
votes
2answers
502 views
Does msvcrt.dll use a linear congruential generator for its rand() function?
I am trying to predict the output of a program that uses msvcrt's rand() function for generating the face of three dice. I believe the code is something like:
dice[0] = rand() % 6 + 1; dice[1] = ...
0
votes
1answer
130 views
Trying to generate several digit intervals in one number (LUA)
Basically I have to use a random function that can return a number between 0 and 2^16-1.
I am trying to make use of this and generate let's say, 6 intervals between 1 and 6 (thinking of dice poker). ...