BuezaWebDev
10-09-2004, 11:58 PM
Hey guys, How do you set a range for Random?
// ****************************************************************
// Random Phone Number
// Author: Jaime Bueza
// Student Number: A00579330
//
// ****************************************************************
import java.util.Random;
public class PhoneNumber
{
public static void main(String[] args)
{
int firstdigit, seconddigit, thirddigit, fourthdigit, fifthdigit, sixthdigit, seventhdigit;
Random generator = new Random();
System.out.println ("This is your random phone number that has been generated:");
firstdigit = generator.nextInt(10);
seconddigit = generator.nextInt(10);
thirddigit = generator.nextInt(10);
fourthdigit = generator.nextInt(10);
fifthdigit = generator.nextInt(10);
sixthdigit = generator.nextInt(10);
seventhdigit = generator.nextInt(10);
System.out.println ("Your new random number is: "+firstdigit+""+seconddigit+""+thirddigit+"-"+fourthdigit+""+fifthdigit+""+sixthdigit+""+seventhdigit+". Have a good day.");
}
}
Would it have to relate to how I constructed the object Random?? Random();
is that suppoesd to be a range number inside the parenthesis?
Kind regards,
Jaime Bueza
// ****************************************************************
// Random Phone Number
// Author: Jaime Bueza
// Student Number: A00579330
//
// ****************************************************************
import java.util.Random;
public class PhoneNumber
{
public static void main(String[] args)
{
int firstdigit, seconddigit, thirddigit, fourthdigit, fifthdigit, sixthdigit, seventhdigit;
Random generator = new Random();
System.out.println ("This is your random phone number that has been generated:");
firstdigit = generator.nextInt(10);
seconddigit = generator.nextInt(10);
thirddigit = generator.nextInt(10);
fourthdigit = generator.nextInt(10);
fifthdigit = generator.nextInt(10);
sixthdigit = generator.nextInt(10);
seventhdigit = generator.nextInt(10);
System.out.println ("Your new random number is: "+firstdigit+""+seconddigit+""+thirddigit+"-"+fourthdigit+""+fifthdigit+""+sixthdigit+""+seventhdigit+". Have a good day.");
}
}
Would it have to relate to how I constructed the object Random?? Random();
is that suppoesd to be a range number inside the parenthesis?
Kind regards,
Jaime Bueza