Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.help > #4161
| Newsgroups | comp.lang.java.help |
|---|---|
| Date | 2016-12-12 08:19 -0800 |
| Message-ID | <619ae8ec-bcca-40b4-8be8-17dd0a63cb1d@googlegroups.com> (permalink) |
| Subject | need help with my code |
| From | Karim omar <karimyousrymohamedomar@gmail.com> |
when i use the (reply = myScanner.findInLine(".").charAt(0);) method i get the following error message
Exception in thread "main" java.lang.NullPointerException
at Ifexercise1a.main(Ifexercise1a.java:18)
and i am sure i wrote it write cause i tried copying and paste it from another prog which is working fine, i am using eclipse and i don`t know if it`s a bug in eclipse or something wrong in the class itself.
the complete code is
import java.util.Scanner;
public class Ifexercise1a {
public static void main(String[] args) {
Scanner myScanner = new Scanner(System.in);
int age;
double price;
char reply;
System.out.println("how old are you?");
age = myScanner.nextInt();
System.out.println("you have a coupon? (Y/N)");
reply = myScanner.findInLine(".").charAt(0);
if(age <= 12 || age > 65){
price = 5.25;
}else{
price = 9.25;
}
if (reply == 'y' || reply == 'Y'){
price-=2.00;
}
System.out.println("you will pay $" + price);
}
}
Back to comp.lang.java.help | Previous | Next — Next in thread | Find similar
need help with my code Karim omar <karimyousrymohamedomar@gmail.com> - 2016-12-12 08:19 -0800 Re: need help with my code Knute Johnson <nospam@rabbitbrush.frazmtn.com> - 2016-12-12 15:16 -0600
csiph-web