For some reason my output is not showing right when I run it. I am showing the code and providing a screen shot of what it's doing. It's bunching lines together.
public void requestData()
{
System.out.print("What is the model number?");
modelNumber = scan.nextLine();
System.out.print("What is the camera brand?");
brand = scan.nextLine();
System.out.print("How many megapixels?");
megapixels = scan.nextInt();
System.out.print("What type of lens does it have?");
lensType = scan.nextLine();
System.out.print("How much did it cost?");
price = scan.nextDouble();
System.out.print("Is it waterproof? True or False");
isWaterproof = scan.nextBoolean();
System.out.print("What color is the camera?");
color = scan.nextLine();
System.out.print("What date was it purchased on? MM/DD/YYYY format please");
purchaseDate = scan.nextLine();
}
[IMG]http://i.imgur.com/NmFN4.png[/IMG]