fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6. import java.util.Scanner;
  7.  
  8. /* Name of the class has to be "Main" only if the class is public. */
  9. class Main
  10. {
  11. public static void main (String[] args) throws java.lang.Exception
  12. {
  13. double x, y, z;
  14. System.out.println("Enter two integers to calculate their sum ");
  15. Scanner in = new Scanner(System.in);
  16. x = in.nextDouble();
  17. y = in.nextDouble();
  18. z = x + y;
  19. System.out.println("Sum of entered integers = "+z);
  20. }
  21. }
Success #stdin #stdout 0.06s 711680KB
stdin
34.6 54.2
stdout
Enter two integers to calculate their sum 
Sum of entered integers = 88.80000000000001