Read double from keyboard in Java

后端 未结 4 552
粉色の甜心
粉色の甜心 2021-01-26 08:50

How can I read a double variable from keyboard in Java? I\'m trying to solve this, but it didn\'t works. It said:

Exception in thread \"main\" java.util.I

4条回答
  •  春和景丽
    2021-01-26 09:24

    try this:

    import java.io.*;
    import java.util.Scanner;
    
    class DoubleDouble
    {
       public static void main (String[] args)
       {
          double value;
          Scanner scan = new Scanner( System.in );
    
          System.out.print("Enter a double:");
          value = scan.nextDouble();
    
          System.out.println("value: " + value +" twice value: " + 2.0*value );
        }
    }
    

    And be sure, that you type: For example: 3.14 so the dot, should be a point

提交回复
热议问题