Search:

Type: Posts; User: mv740

Search: Search took 0.10 seconds.

  1. Re: bingo ticket loop problem (doesn't compile like it should...)

    if i understand correctly if i delete the loop for(int x=0;x<5;x++)... it will only create only 0 in every elements

    i thought that by making the last loop it will only create a random number in a...
  2. Re: bingo ticket loop problem (doesn't compile like it should...)

    0 0 0 34 45 52 62 77 87
    0 0 24 32 43 58 66 73 87
    0 16 21 32 46 54 65 77 86

    it gave me this but it supposed to have 5 random number per row ...
  3. Re: bingo ticket loop problem (doesn't compile like it should...)

    oh sorry by doesnt compile; i wanted to say it doesnt give the same output when i tried the loop

    for(int x=0;x<5;x++)
    {
    int k = rand.nextInt(9);
    array[i][k] = k*10...
  4. bingo ticket loop problem (doesn't compile like it should...)

    import java.util.Scanner;
    import java.util.Random;

    public class demo
    {

    public static void main(String[] args)
    {
    Random rand= new Random(); // being able to use random object
Results 1 to 4 of 4