The dice tag has no wiki summary.
-2
votes
0answers
32 views
Ruby dice roller uknown error
when I run the program the interpretter just returns unknown error it's probably something stupid I'm really new to ruby with a little background in python
diceNumber = 0
sideNumber = 0
rolls = 0
...
3
votes
3answers
45 views
Loop with Dice rolling program, previous roll and double check
A fairly trivial problem to most I am sure but I can't quite work out how I'm meant to get the previous dice integer to remain the same as the previous roll of die in the program. I think the code is ...
1
vote
2answers
39 views
My code doesn't load (stuck at do/while loop?)
I've been trying to make "a program" that basically keeps "throwing dice" (randomize the value) until you get snake eyes, and when you do it's supposed to show how many times the dice were thrown. ...
1
vote
1answer
55 views
A PHP Dice Roller with Database Read/Write [closed]
I fear I'm biting off a project that is far more advanced that I realize, but I would like to make a small PHP app, and simply don't know where to begin.
The app needs to:
roll an entire set of ...
-5
votes
0answers
70 views
c# dice game with the use of classes
I have to write a program (c#) were there is a dice thrown and the value of the dice is visible on a picture. I have to do this using classes.
Can someone help me out?
bool dobbelsteen;
bool ...
1
vote
1answer
65 views
Dice returning 0 and no rolls
playerDice = new Dice();
int playerDiceNo = playerDice.getfaceofDie();
MessageBox.Show("Your roll" + playerDiceNo);
compDice = new Dice();
int compDiceNo = compDice.getfaceofDie();
...
1
vote
2answers
68 views
ReadLine(); between values
I made a dice game and just a few moments ago asked for a solution here, which i got. it made a new problem and in which i cant seem to find a answer.
Heres the code.
using System;
using ...
1
vote
2answers
129 views
C# Dice game, turn this into a user typed input
Ive made a dice "game" which randomly chooses a number and then "rolls" to see how many rolls it takes to get the same number. The problem im having is how can I make the pyöräytys to be typed in by ...
-3
votes
1answer
107 views
Homework Help - Rolling a dice and counting the values [closed]
I am stuck on a program which rolls a dice, stores the values in an array, and prints out how much times the result has happened (sorry, not to good at explaining that part). I was just wondering if I ...
0
votes
1answer
55 views
How to assign existing code/bitmaps to MFC
So I wrote a program that simulates a dice game, almost like the game of Craps. I want to turn this normal console app into a dialogue based MFC. So I would create a button labeled "Roll" and the ...
1
vote
2answers
40 views
Updating mySQL INT with new INT
Okay so for a basic outline I'm trying to update a column in my mySQL database dependent on the outcome of my code.
Basically it's rolling dice, if you beat the house it increases your INT by 5 if ...
1
vote
4answers
107 views
Python: random module with sum accumulator for odd numbers
Hello I'm trying to make a function including the random module that only accumulates the sum of odd rolls of n-dice, n-sided times. Sounds a little confusing but for example if I rolled 2-sided die 2 ...
0
votes
4answers
77 views
Python: Finding the product of randomly generated integers
one more question. I am a first year CS student who has to do this on paper, so I am not able to import any programs to solve the problem.
I have been asked to create a psuedo-random set of integers, ...
1
vote
1answer
188 views
Dice Roll in Python GUI
I am something of a beginner to Python. I am trying to figure out how to roll a pair of dice in the Python GUI using the randint function.
I want to use two mouse clicks to generate two numbers for ...
-5
votes
1answer
185 views
Dice Poker program [closed]
I need to create a Dice Poker program in Java for my final assignment. The program will give the user a $500 bank and the computer a $5000 bank. The player and computer will roll 5 dice and whoever ...
-1
votes
1answer
24 views
2 Functions executing side by side
Ok, this is my first time asking a question on here so please don't be mad if it's not a good question. I have 6 functions representing the image of a dice being rolled. I have to make a craps game ...
0
votes
1answer
89 views
How to successfully use rand in C when making a dice roll, without it taking 1000s of turns before getting it right? [closed]
So I have made the following program successfully that will allow the user to punch in a number(between 1 to 12) and then tell the user after how many tries did that did the two dice roll the number ...
1
vote
1answer
95 views
Simulate 5 die roll for Yahtzee game
I'm trying to simulate rolling 5 dice for a Yahtzee game I'm writing in MATLAB, but I'm running into the issue that my code doesn't seem to generate any yahtzees after running 1000+ iterations. Am I ...
0
votes
1answer
63 views
Arraylist, incomparable types: DieClass and int
Trying to write a program that "rolls" dice and displays the results of the players and computer's rolls, as well as find how many of each number was rolled. Say, player rolls 3 4 3 5 6, then the ...
0
votes
2answers
119 views
Want to generate random numbers. simulating rolling dice
I am trying to load two arrays. representing the possible outcomes (1-6) of rolling dice. The first array gets loaded with the first dice outcome and the second array.....I am struggling with keeping ...
-7
votes
1answer
60 views
Pepys questiom about 18 rolls of dice [closed]
Basically looking to make a roll of a dice to get at least one number within 18 rolls but in 3 stages, refer below to see what im doing wrong please...
public class Pepys {
public static void ...
0
votes
1answer
119 views
Having trouble with class creation for a java dice game
I Just started learning Java a few months back andI have been set a task to create a simple dice game in java. The first exercise is to implement a Die class, with the following instance variable, ...
0
votes
2answers
305 views
generate random numbers in methods
I did the code, make a random number between 1 and 100 as task A), then how I understood if the first value if more than 50 generate second random number between 1 and 50 as said ( how I think) task ...
-2
votes
2answers
76 views
How do I get a random photo output?
I have a program here that rolls two dices. It uses thread(have I done correct? like I used two threads is that ok?) When I click roll, eventually it'll roll. It's working good but everytime I click ...
0
votes
1answer
100 views
Enumerate all possible draws throwing N of X faced dices
Given n dices each one having x sides, I am trying to enumerate all the possibles draws.
For instance, if we have 10 three sided dices, and all of them fall on the value 1 side :
10 00 00
I have an ...
0
votes
2answers
185 views
Dice Simulator with C Programming
I am trying to write a code for a basic dice simulator program. When a switch is pressed the two seven segment displays will rapidly change between 1-6. When the button is released the random number ...
3
votes
1answer
91 views
Unable to Interact with Android Custom Dialog
Ok, bear with me because I haven't worked with custom Dialogs (or Android programming at all really) that much, and I'm sure I've made a stupid beginner mistake.
So I have a simple dice rolling app ...
0
votes
0answers
58 views
generate mdx from dice or selection operation
I'm currently working on a project which require me to map the dice operation to a MDX form. I found that dicing / do a selection on multiple dimension is something about combining the attribute value ...
1
vote
0answers
262 views
Trying to code a craps game and having trouble with logic
I have everything except the actual gameplay coded. I can't think of how to code the logic. I know the rules of craps, but I cannot (for the life of me) think of how to code it. Would I use a switch ...
6
votes
2answers
433 views
Project Euler 240: number of ways to roll dice
I 'm trying to solve Project Euler problem 240:
In how many ways can twenty 12-sided dice (sides numbered 1 to 12) be rolled so that the top ten sum to 70?
I've come up with code to solve this. ...
3
votes
3answers
544 views
Basic C# Dice Game
I am new to c# and coding in general. To try and improve my skills I am trying to create a basic game where two players roll a dice and keep record of their score. The player wins by reaching 20. Each ...
-1
votes
2answers
179 views
Dice Loop, adding together different rolls
How would I be able to display the score each player throws at the end of each round? (I'm treating 1 round as 1 throw per player)
Incidentally, If a player throws a 6 they roll again.
...
1
vote
3answers
215 views
Dice Loop, With roll again if 6
new to C# so sorry if this comes off silly.
I have the following code so far regarding my dice:
Random DiceRandom = new Random();
int DiceThrow = DiceRandom.Next(1, 7);
Console.WriteLine(DiceThrow);
...
0
votes
1answer
249 views
C++ multiple dice roll [duplicate]
Possible Duplicate:
How often should I call srand() in a C++ application?
I am trying to implement rolling multiple dice but with my code, even if i create 2+ dice, they always seem to roll ...
1
vote
5answers
154 views
Die Roller with user selecting number of sides
I'm new to programming and I'm trying to build a die roller game in C#.
The program asks the user for the number of sides and then rolls a dice with a random number.
I have the following ...
1
vote
2answers
272 views
Simple dice roller in objective-c
My goal is to design a dice game in this way:
Roll 1 die, if this die is even, you get one extra die and you can now roll 2 dice. If every die is even, you get one extra dice, and so on...
My ...
0
votes
2answers
848 views
Relative Frequency Histograms and Probability Density Functions
The function called DicePlot simulates rolling 10 dice 5000 times.
The function calculates the sum of values of the 10 dice of each roll, which will be a 1 ⇥ 5000 vector, and plot relative frequency ...
0
votes
1answer
193 views
How to create a histogram for my dice function?
I created a dice function but i don't know how to create a histogram for it. Each bin in the histogram should represent a possible value of for the sum of the dice. For example, for NumDice = 1, the ...
2
votes
1answer
303 views
Summing up Dice in MATLAB
My function called RollDice simulates the rolling of a given number of six sided dice a given number of times. The function has two input arguments, the number of dice (NumDice) that will be rolled in ...
1
vote
1answer
168 views
AI for the Dice game FARKLE
I'm hoping someone can point me in the right direction. I have a dice game called Farkle. The game is working great as a Two Player game. Now I want to implement an AI for a One Player game. ...
1
vote
3answers
140 views
'int' object is not callable while calling a function
I am an amateur programmer who is working on a console dice roller, quite more complex than the traditional ones. So far I am having trouble with this function:
def multiRoll(dice, amount):
...
0
votes
2answers
429 views
Throwing n dice m times, what is the probability of getting atleast one six
I have the following code trying to solve the problem below:
Thrown n dice m times, calculate the probability of getting at least one 6.
I know that the exact probability of getting at least 1 six ...
-1
votes
2answers
234 views
Python — Determine Frequency of numbers showing up in dice rolls
these are the functions used to roll the dice.
def roll() -> int:
''' Return a roll of two dice, 2-12
'''
die1 = randint(1, 6)
die2 = randint(1, 6)
return die1 + die2
def ...
2
votes
2answers
319 views
Blackjack game using dice
I'm doing a project in java in which I am using dice to simulate a blackjack game, however, I have hit an area where I have written the wrong code. I'm trying to get the dealer to simulate actions if ...
0
votes
1answer
85 views
Images based on Array Values
I have a dice game and I am trying to change the image of the Die that is selected after the dice are rolled to a "Dead Die" image. I have tried everything I can think of and I always end up finding ...
0
votes
1answer
202 views
for loop dice roll and textbox.Text updating troubles c#
I'm trying to make a program where there is at first a random dice roll that is "rolls" to decide the number of times that dicethrow should throw the dice (between 1 and 9 times), anything greater ...
0
votes
3answers
244 views
Syntax Error in Dice game [closed]
I made this dice game in python, but am getting a syntax error with my inputdice function. Below is the dice game in its entirety. When run, the game should go through 10 rounds and stop after round ...
1
vote
1answer
230 views
Compare Arrays in Dice game
* Coded Edited with Fix * I found an open source project that has a few bugs (I have fixed a couple so far) but this one has me stumped. The issue that I am trying to solve... If I have 3 sets of ...
3
votes
1answer
259 views
Issue with hold function in Yatzy bot
I'm stuck with a 'hold' function when developing a Yatzy bot. Everything else works, but the logic for this function seems to fail in some instances. Basically, the idea is to hold all the numbers ...
1
vote
2answers
911 views
Python dice simulation
I'm a bit stuck on a homework question that simulates rolling dice. The question asks to create a function that returns a random integer value from 1 to 6, and to create a main program that asks the ...



