0
votes
2answers
54 views

Same random numbers being created everytime the loop goes around.

I am a beginner at C++ and for one of my project involves loop inside loops and creating random numbers. Here is what I have so far: ` using namespace std; int main() { srand((unsigned ...
-2
votes
1answer
49 views

Generate 5 random numbers that it SUM a determinate quantity in PHP or JS [closed]

I want to set an x number for example 4000 and I want to set in how many random numbers that will SUM that number Number: 4000 how many random: 5 Result: 1538 597 817 693 355 And if I sum that ...
0
votes
5answers
82 views

Java Random number but not zero

int num = 10; Random rand = new Random(); int ran = rand.nextInt(num); if (ran==0){ ran= ran+1; } else{ System.out.println("random : "+ran); } This is what i have coded so ...
3
votes
2answers
160 views

Delphi7, Randomize, choose random numbers from 1 to 6, but not 0

i'd like to make 2 dices, but i don't want it to choose 0, this is my code: procedure TForm1.Button1Click(Sender: TObject); var x1,x2:integer; text1,text2:string; begin randomize; x1:=random(7); ...
0
votes
1answer
35 views

Octave - random generate number

I have a simple question about randomly generating numbers in Octave/Matlab. How do I randomly generate a (one!) number (that is either 0 or 1)? I could really use an example. Thanx
0
votes
4answers
70 views

Why does my random generator always return 0?

I have it set up so If a 0 is returned, than an image of a dice with a 1 on it is set to the place of a buttons image. It does this with different values and images too. 0 = Dice 1, 1 = Dice 2, 2 = ...
0
votes
5answers
49 views

Generate a List of Unique Random Numbers

So, I have a random number generator, where it generates 10 numbers between 1 and whatever the user inputs as the maximum. It worked well, but I want to make it so it doesn't generate duplicate ...
0
votes
2answers
45 views

how do i generate series of numbers?

i need help to generate series of number and it should be generate series of number when form is submitted i have code but it not working properly? For Example I Want Like This 00500 00501 00502 ...
-5
votes
1answer
39 views

Generate randomly centers of clusters [closed]

Say I have two clusters that I would like to randomly generate their cluster center as follows: rand(1,2) I saw a code that uses the following for such generation: rows*rand(1,2) Why do you think ...
3
votes
5answers
292 views

How do I generate 6 random numbers between 1 and 6 using Java?

I am encountering a problem generating 6 random numbers between 1 and 6 in Java. All the numbers have to be unique. When I enter kolon value 5, the arrays should be like this: 1 2 3 4 5 6 1 2 3 4 5 ...
-1
votes
1answer
32 views

Generating a Random Number for HTML

I am trying to generate a random number between two values that can be changed to whatever I choose. On the load of the page, I want the number to be shown in the body of my site. Thanks!
0
votes
3answers
61 views

i m trying to generate random number but every time i am getting error ‘ranf’ was not declared in this scope [closed]

here is the code which is giving error 'ranf' was not declared in this scope. the code is about generating random numbers with initial position and velocity. i am not able to configure how to resolve ...
1
vote
2answers
103 views

C Programming 'Craps' Game [closed]

I'm doing a learning task for my C programming course, I've been asked to do the following: Task 2. Craps. In the game of Craps, a "Pass Line" bet proceeds as follows. Using two six-sided ...
0
votes
2answers
87 views

Generating random integer values within a range in C [duplicate]

How do I go about generating random integer values between a range (in this case 1-12 including 1 and 12) in the C language? I've read about seeding (srand()) and using rand() within a range but am ...
0
votes
2answers
54 views

Create specific range of random numbers and link different CSS styles to these

Somewhat of a noob here! What I want to do, by using javascript, is to get a random number between 10 and 25 when it’s summer, -5 and 10 when it’s spring and fall and then -20 and -5 when it’s ...
0
votes
1answer
56 views

“Scrambler” functions? Like random number generators

I am interested in a modification of the usual idea of random number generators. That is, typical generators generate long strings of reasonably independent, uniformly distributed numbers from that ...
0
votes
1answer
96 views

My array values are incorrect when loading them into a dialogue box Visual Basic 2010

I wasn't sure what I should name the topic, but I'll explain the situation. I have an array with stored card values. Right now I'm implementing dodge and block cards to my game, so I decided to make ...
-1
votes
1answer
55 views

Choosing one number out of two numbers. R

I am trying to create a for loop where p would choose either of two number. E.g: for (p in 0:runif (1, 0, 1)) { if (p == 0.8) { all.wells[[i]]$state.names == "C" } if (p == ...
-5
votes
2answers
48 views

Something wrong with quick Java program

Basically it generates numbers randomly and checks which numbers were generated. But when I run it it repeats. Number of 0's is 1 Number of 1's is 0 Number of 2's is 0 Number of 3's is 0 Number ...
-2
votes
1answer
61 views

My Program breaks randomly [closed]

My program randomly decides to quit working. No Error messages, just pressing the play buttom with nothing happens, and I check my card summary to find that The QuantityInteger to a corresponding ...
0
votes
2answers
68 views

How to not generate a stack overflow when a sub procedure calls itself?

This code generates a stack overflow. I'm aware it is caused by the procedure calling itself. What can I do to avoid the stack overflow? Recalling the sub procedure and generating a new random number ...
1
vote
2answers
89 views

Unbiased random range generator in Javascript

To prevent bias for max, I'm recalculating each time the decimal range falls above max, instead of stripping decimals. Using random() introduces some bias I think, but that is acceptable. Optional ...
-1
votes
2answers
41 views

Android random countdown app

I previously made simple reaction-time app thing on my TI 84 calculator, and realized that it was so simple I should be able to make it for android, too. But I'm not really skilled in android yet ...
-7
votes
3answers
36 views

What is a possible algorithm for computing random numbers? [closed]

Programs like java, c++ and others use random numbers, I was always curious how the numbers were generated.
-1
votes
4answers
87 views

Generate a username with random numbers behind

So far I got only this which generate random numbers instead. function randomUsername() { $number = "0123456789"; $username = array(); $numberLength = strlen($number) - 1; for ($i = ...
-2
votes
2answers
35 views

How can i modify the php code to recieve 5 numbers without duplicates/repeating numbers?

i have this php code: <?php function GetRand($N, $min=1, $max=59) { $Local = array(); mt_srand(time()); for ($i=0;$i<$N;$i++) $LocalArr [] = mt_rand($min, $max); return $LocalArr; } $A = ...
-1
votes
4answers
258 views

Generate random images through numbers c#

I am making an app in which 4 chits are to be thrown randomly. I am done with generating random numbers by clicking on a button random numbers are generated between 1 to 4. My question is how do I ...
1
vote
3answers
79 views

Random number with no repetition

What I am trying to do is make it so that the game I am creating will randomly change characters every 5 seconds. I got this working via a timer, the only problem is I don't want them repeating, I'm ...
1
vote
1answer
53 views

Seeded Pseudo Random Number Generator

I am developing a Perlin Noise generator which works based on a seed integer and on two other integers: x and y. By now, the pseudo-random number generator is looking like this: private float ...
0
votes
1answer
110 views

Specific random number generator

I need to generate numbers in between a specific range and after 1st cycle if number doesn't suit, I need to delete it from the range. Example: I am going to generate random number from range ...
-4
votes
2answers
73 views

Android SDK help (java)

So I'm really not too great at programming, but I am reading and trying to change that, for the time being i need some help. I have a simple app that will generate 7 random numbers 1-49 and place ...
4
votes
1answer
68 views

Bias in randomizing normally distributed numbers (javascript)

I’m having problems generating normally distributed random numbers (mu=0 sigma=1) using JavaScript. I’ve tried Box-Muller's method and ziggurat, but the mean of the generated series of numbers comes ...
0
votes
2answers
38 views

Generating random numbers based on an expected value

I am programming in java and I have come across a problem I could use some help with. Basically I need the user to enter how many times they expect a certain event to happen in a certain amount of ...
3
votes
3answers
128 views

Adding -1,0, or 1 randomly to a number in C [closed]

I am trying to figure out a way that I can randomly generate -1,0, or 1 using srand and rand. Whenever I do, however, I am only able to get the values inside the range generated and never the -1 or 1. ...
0
votes
2answers
121 views

php random number code that uses same random number throughout session

I found a php random number generator here which works on my Wordpress site. The actual code (see below) displays a new random number when the browser reloads. My goal is to have the same random ...
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 ...
0
votes
0answers
88 views

Arrays and random number generating

First of all, this is a homework problem. My problem does not have to do with the actual programming, but with understanding what I'm being asked to do. Here is the problem: Draw a flowchart for ...
0
votes
3answers
331 views

Make click button generate random numbers without repeating

I want to make an app (just for learning purposes) that generates a random message without repeatition. I have this code inside the onCreate method: imgbutton2 = (ImageButton) ...
1
vote
1answer
32 views

Random numbers from an irregular range C

Hello how would I get numbers randomly from a group of specific numbers using arrays in C? Say, I wanted to generate 50 numbers from a set of these numbers: 52 67 80 87 90 95
-2
votes
4answers
84 views

Algorithm for printing all possible 8 digit numbers [closed]

Do an algorithm for printing all possible 8 digit numbers requires 8 for loops? i.e 10 to power n time complexity. Is there a way I can reduce the number of loops?
-3
votes
1answer
110 views

Complicated C# Guessing-Gaming. Please assist, 2 days I can't figure-it-out [closed]

C# Guessing-Game Use a loop construct that will repeat asking for a guess if the current guess is incorrect. In your prompt for the guess, include the range of values allowed (between 1 to 10). If ...
0
votes
1answer
192 views

Random Number File Writer

Instructions: Write a program that writes a series of random numbers to a file. Each random number should be in the range of 1 through 100. The application should let the user specify how many ...
0
votes
1answer
252 views

MySQL UPDATE with random number between 1-3

Got a big table and I want to add a column that has a randomly chosen number for each record. 1, 2, or 3. Having a hard time. Any ideas?
1
vote
3answers
118 views

PHP - Generate a random 5 digit number with a exception from an array

I want to generate a random 5 digit number for a file name, with exception. If PHP will generate for example the number 65, I want to be set 00065 (only 5 digit). I have a array who contains a ...
-3
votes
3answers
210 views

How can I make an extremely basic php captcha [closed]

So, I am basically making a website with a forgot password page. I want to add a captcha system. Now, I don't want anything that can't be made in like 5 minutes, just keep it short and simple. I want ...
1
vote
2answers
284 views

How to generate uniformly distributed random floating point numbers on entire possible range in matlab

I am trying to generate an array of uniformly distributed floating point values in single precision in MATLAB. I want to generate all numbers in the range +/- (2-2^-23)*2^127 which represents the ...
0
votes
1answer
62 views

Cannot sort array with randomly generated numbers

I am having trouble getting the array to sort after the random numbers are generated in the array. I think the array is being sorted before all the numbers are assigned. I have tried nesting another ...
3
votes
6answers
204 views

PHP random number generation with condition

I was recently given a task to accomplish which i failed. I don't usually ask for logic but today i am compalled to ask.Here is the task. I am not allowed to use rand() function of php. instead i can ...
3
votes
4answers
147 views

Whats wrong with this PHP While loop script [closed]

Basically I made it to create a SQL query to insert about 5000 random numbers in a database $i (currently 10 just to figure it out). I previously tried to do it solely in MYSQL, but failed and don't ...
4
votes
8answers
352 views

How to randomly generate decreasing numbers in Python?

I'm wondering if there's a way to generate decreasing numbers within a certain range? I want to program to keep outputting until it reaches 0, and the highest number in the range must be positive. ...

1 2 3 4 5 6