Tagged Questions
1
vote
2answers
47 views
Attempting to create chance calculator
I am relatively new to Java and wanted to try and make a code that would randomly generate 2 numbers a set amount of times, and it would track how many times the 2 numbers are the same. Then after X ...
0
votes
2answers
26 views
Why can't I shuffle an array properly with shuffle in PHP?
Here is a function that reproduces my issue. I have an array. Inside the array is array( 0 => 'l', 1 => 'j', 2 => 'b'). Notice how b is always at the end no matter what I do.
private ...
-3
votes
3answers
67 views
generate random NOT in array [duplicate]
I am trying to generate a random number that does NOT exist in a restricted number array.
js
var restricted = [3, 4, 7];
function getRand () {
rand = Math.floor(Math.random() * 10);
if ...
0
votes
2answers
75 views
How to restart array once filled on windows form? [closed]
I created a form which asked the user to guess the number. I created an array on 100 ints, created a method to get random numbers to fill the array. All is working fine but I am required to create ...
0
votes
0answers
16 views
Most effective way of displaying random string (with metadata) on click
So here's the breakdown of what I'm trying to achieve:
Medium: Web
To have a set (hardcoded) list of strings that can be called upon and displayed randomly (one by one, changing each time you ...
0
votes
2answers
40 views
Printing array elements at random until all elements have been printed
I'm trying to create a method that takes in 3 int arrays and prints out one element from each array until all the elements of all three arrays have been printed at least once. The first array has 10 ...
-1
votes
1answer
29 views
Array_Rand always returns same value PHP fetch array
I have this function:
function set_spell() {
global $connection;
$query = "SELECT * FROM Spells";
$result_set = mysqli_query($connection, $query);
$spell_id_list = mysqli_fetch_array($result_set);
...
2
votes
1answer
66 views
Creating ( not truly ) random array of integers in Java
I want to write a code that generates an array of random integers in Java which should hold 256 integers and where the values of integers are somewhere between 0 - 512(It could be 0 - 256 or 0 - 1024 ...
2
votes
5answers
208 views
Randomise an array of integers [duplicate]
Can you help me to find a way to randomize arrays? E.g.:
int[] arrayInt = { 1, 2, 3, 4, 5, 6, 7 };
after randomizing, the result should be stored in another array.
And when you randomize again it ...
3
votes
1answer
24 views
ActionScript 3.0 Randomize array, display number, and splice that number
So I am building a deck of cards. I have them blocked out, and appearing correctly on the screen. Now I need to build an array with numbers 1-16, and display them randomly on the cards without ...
0
votes
1answer
46 views
random function not working properly
I am having trouble with an asp page that contains a random function to display a random number of random records. The way I have the code now, as shown below, nothing appears on the page even though ...
0
votes
0answers
19 views
Unique objects from a random list, only one of each type can ever be present universally (Java)
Currently I am writing a program (in Java) that mimics the process of cellular reproduction (Both Mitotic and Meiotic reproduction(In plain English: Sexual and Asexual reproduction)), alongside of the ...
1
vote
1answer
69 views
Random integer / occurrences (C++) issues
I've been currently stuck on a C++ problem for about an hour and half. Here's the question:
Write a program that generates one hundred random integers between 0 and 9 and displays the count for each ...
-2
votes
2answers
71 views
android how to get 4 images in array from ten array of image randomly
I want to get four images from a array but I need same position images from other array
as like in example.
images = new int[] {
R.drawable.a, R.drawable.f, R.drawable.k,
R.drawable.u, ...
2
votes
1answer
27 views
Get random item for array based on different probabilities?
Okay, imagine I'm creating a Pokemon game in JavaScript. I have an object like this...
pokemon = {
"pikachu": {hp: 100, probability: 0.1},
"squirtle": {hp: 90, probability: 0.2}
};
I basically ...
-1
votes
4answers
58 views
Random array size at the beginning?
I want to make a random sized array everytime program executes at first but compiler yells me
"Error 2 error C2466: cannot allocate an array of constant size 0"
Is there any way that I can ...
1
vote
5answers
43 views
Get Some Value from Random Function in PHP
I have five value that I get from generating random function in PHP like this:
1
0
0
1
1
And this is the code:
for ($i=0; $i<10; $i++){
$n = rand(0, 1);
echo $n;echo "<br/ >"}
And now, ...
0
votes
4answers
39 views
AS3 - Preventing duplicates from being selected from an array
I've got an array of eight strings that I want to place on the stage (using TextFields) in a random order.
I can select any 8 of the strings without a problem, using Math.random to pick a number ...
0
votes
2answers
44 views
My program is setting the first array element to the NUM_EL rather than a random number but the rest of the elements get randoms
#define NUM_EL 10
int randomArray1[NUM_EL];
int randomArray2[NUM_EL];
int sumArray[NUM_EL];
//Function Protocol
int IntializeArrayWithPointers(int, int, int);
void DisplayArrayDataWithPointers(int);
...
1
vote
3answers
110 views
Random array generator
Given 'n', 'm', 'k', 'x' and 'y' integer values...
I have a numeric ArrayList with 'n' positions and I need to create 'k' other arrays using the values in the first array and with 'm' positions. How ...
0
votes
3answers
72 views
Putting output from rand() into an array
I wrote a small dice rolling program that will print out the results of however many dice rolls that are entered. I want to count how much each number occurs so I thought I would put the output from ...
2
votes
1answer
36 views
Check through an array and identify matching numbers
I am working on a scratch card game where by a user purchases a scratch card from me/my store and can then redeem said card by scratching off numbers and matching 3 pictures to win a prize
Like ...
0
votes
1answer
62 views
Filling my arrays with random numbers?
I'm having trouble putting random numbers into the arrays in my test class. The code is in java. I can't do it individually, because eventually I'll have to fill the arrays with as many as 600 values. ...
0
votes
3answers
89 views
[JAVA]Random number to store inside array list and choose from it
I am trying to create a program to generate random number and store into arraylist.
Meanwhile getting the number stored to do multiply.
I have store the generated number but how do I actually get the ...
3
votes
5answers
258 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 ...
0
votes
1answer
39 views
I need to make an array of five background colors and then use the “stylize() function” to select one at random for a table
I am in a basic HTML/JavaSript class and I can't figure out a way (and where to put) an array of five bgcolors and "use the stylize() function to select one of the colors to pick the cell background ...
0
votes
2answers
56 views
Android: How do I randomly place an array of buttons in an activity?
I was wondering how I could "randomly" place an array of Buttons in a RelativeLayout?
Is it possible to space the buttons around the entire view?
Thanks for your help! I tried using setX() and ...
0
votes
1answer
70 views
AS3 bingo game - is it possible?
I'm at a complete loss.
I'm trying to generate random Bingo tickets, but I'm stuck right now.
The point is, that have the following code:
var startNum:Number = 1;
var endNum:Number = 90;
var ...
0
votes
4answers
92 views
AS3 create multiple arrays in loop
I'm trying to make six arrays, so I've created them all by hand. I know there's a way to make this whole kerfuffle shorter, but it's slipping my mind.
var variant_1:Array = new Array
...
-1
votes
3answers
73 views
Java Programming: Array's and Random Gen
I have an assignment to create a program that generates random "poems". Here is my code:
package poem;
import java.util.Random;
public class Poem {
public static void main(String[] args) {
...
0
votes
3answers
45 views
How to print out a random String from an array in Java
Hi I have been trying to make my first game for a while but have run into difficulty. I want to pull a randomized String from an array of Strings and then print it out but I have errors in my code. I ...
-1
votes
3answers
75 views
Probability With Arrays C++ [closed]
I have an array that contains the probability of different choices. For example:
Array 1 has {5, 3, 2, 7, 1} values. Choice "0" has a 5/18 chance of being chosen, Choice "1" has 3/18 chance.. and so ...
0
votes
2answers
39 views
Random images and text with query mobile
I have some code that I am using to generate a random image when the initial screen image is clicked (found on JavascriptSource):
<script type="text/javascript">
<!-- Original: Nicholas ...
0
votes
1answer
58 views
Random value on an array
I would like to generate a random value on an array. But each click, the array gain a new value, so I don't want to get a random value who have already a value on the array. In a nutshell, I need to ...
0
votes
1answer
22 views
randomly generating images on screen, how do i get it to loop after a certain amount
so I'm creating a project and for the background I want stars randomly appearing and dissapearing from the screen.
I have the stars randomly appearing, but they just stay on the screen and eventually ...
2
votes
2answers
65 views
Reproduce random array sort
I have an array of objects that I want to sort by random. For this case I can use array.shuffle. But what if I want to reproduce that order later on the same array? Is there any way that I can provide ...
1
vote
5answers
82 views
Javascript random quote onclick
I want to display a random quote from an array when a button is clicked. The problem is that my code doesn't show a first random quote when I load the page. In other words, this code works but to see ...
0
votes
2answers
33 views
What is the most efficient/performant way to store and access random text via JS?
I'm building a turn-based iPad game using HTML5/jQuery + PhoneGap.
After each turn a player takes, we want to show some random text-based information. Typically a sentence.
In total, we may have ...
1
vote
2answers
125 views
Outputting Max min and average from a randomized array? (C++)
I was wondering if anyone can help me with something I was struggling all day with.
In the code below I dictated an array of randomized numbers from which I have to have pull out the max the min and ...
-3
votes
1answer
56 views
php random array - random again when doing while [duplicate]
Right now, every single time I do a while do, it goes from top to bottom of my array. How can I make it go through each value but in a random mode, not from top to bottom?
Here's what I have:
$xbb = ...
1
vote
3answers
62 views
preventing redundant random numbers
I'm trying to get random numbers 0 - 499 in sets of 2 based on what the user inputs. For example 234 and 58, and thats one set, but the user may prompt that they wan 8 sets. Im trying to make sure ...
0
votes
4answers
55 views
Generate an array of several thousand random locations within such an array, e.g. (3,75) and (56,34) in python
So far ive created 2 lists of data points labelled x and y respectively. I have no idea how to combine them into a single array though so that they are coordinates.
import random
import pylab
x = ...
0
votes
2answers
79 views
Selecting random values from list until they are gone in Python
Using Python, I want to randomly select people from a list and put them in groups of 5 without selecting the same person more than once. The people are defined by 2 criteria: age and sex. The list ...
0
votes
1answer
38 views
Struggling with C#, reading from XML in my generator
I gave up on doing this in Excel, so I made a XML file (named "ideas.xml") looking like this:
<ideas>
<verbs>
<verb>Verb1</verb>
<verb>Verb2</verb>
...
1
vote
2answers
87 views
Shuffle an array around in this specific way? [duplicate]
I want to do is shuffle the array below every time I load my console application. For example batman could be next to name[1], name[2] or name[3] instead of 'name[0]' every time.
heroes[] ...
1
vote
3answers
111 views
Generating a random number from the array
Suppose there is an array :
int arr[] = {0,1,2}
Is there a way I can generate a random number out of 0,1,2 (i.e from the array) ?
0
votes
6answers
103 views
Create 10 Unique numbers and save to array
I am trying to generate 10 unique random numbers and save it to an array.
Here is my code, but there is run-time error, but I dunno how.
Can someone help me please ?
static void Main(string[] ...
1
vote
3answers
98 views
Array of Classes
I'm having a problem with my program a little bit.
I created a class like this in my programs:
class ClassA
{
public int number = -1;
public Random rnd = new Random();
public void ...
2
votes
1answer
90 views
Truly drawing cards at random, and not just a random group? visual basic 2010
I realized a flaw on my coding for picking cards from my structure group arrays this morning for a tabletop card game I'm converting to computer.
Currently the code is set up to randomly pick an array ...
0
votes
1answer
67 views
How to trigger a certain event in Javascript
First of all sorry for the bad question, I don't know how to write it well in one sentence.
Here is my scenario, I am making a game where 3 pictures are displayed on screen and along with a word. ...



