Hi, I'm having a problem with reading from the char , coupon, and it comes up with an error saying
Exception in thread "main" java.lang.NullPointerException
at input.Main.main(Main.java:27)
At the line which I read from the char, which is that myScan.findInLine bit, I am working from a beginning java programming book, and I'm pretty sure everything is the same but I still receive that error when I get up to that bit in the program(after it asks Do you have a coupon?)
public class Main {
public static void main(String[] args) {
int age = 0;
char coupon;
double price = 0;
Scanner myScan = new Scanner(System.in);
System.out.println("How old are you?");
age = myScan.nextInt();
System.out.println("Do you have a coupon?(Y/N)");
coupon = myScan.findInLine(".").charAt(0);
System.out.println(coupon);
if (age >= 18 && age<=55 )
{
price = 11.25;
}
else
{
price = 9.25;
}
if(coupon=='y'||coupon=='Y') {
price = price - 2.00;
}
else {
System.out.println("No Coupon. Price Remains the same.");
}
System.out.println("The price will be:" + price);