When I try to read a double from keyboard it only accepts when it's separerat with a comma

59 Views Asked by At
Scanner scan = new Scanner(System.in);
        double cost = scan.nextDouble();
        System.out.println(cost);

So i try writing 7.6 and it throws and exception in main. But when i write 7,6 it's OK and it prints 7.6

I'm using eclipse as my IDE

1

There are 1 best solutions below

2
On

System locale uses decimal separator ',' (on your current system), you can explicitly specify the locale the scanner should use like

Scanner scan = new Scanner(System.in);
scan.useLocale(Locale.US);
double cost = scan.nextDouble();