fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. int a;
  13. int b;
  14.  
  15. a=(int)(Math.random()*10)+0;
  16. b=(int)(Math.random()*10)+0;
  17.  
  18. System.out.println("The point is: ("+a+","+b+")");
  19. System.out.println("The distance is: "+Math.sqrt((a*a)+(b*b)));
  20.  
  21. }
  22. }
Success #stdin #stdout 0.1s 320576KB
stdin
Standard input is empty
stdout
The point is: (2,6)
The distance is: 6.324555320336759