Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.55 KB | None | 0 0
  1.  
  2. public class Test {
  3.  
  4.     public static void main(String[] args) {
  5.         // TODO Auto-generated method stub
  6.        
  7.         ConsoleReader in=new ConsoleReader(System.in);
  8.         System.out.print("Unesite prvi broj? :");
  9.         double a= in.readDouble();
  10.  
  11.         System.out.print("Unesite drugi broj? :");
  12.         double b= in.readDouble();
  13.  
  14.         System.out.println("Zbroj je: "+(a+b));
  15.         System.out.println("Razlika je: "+(a-b));
  16.         System.out.println("Umno\u017eak je: "+(a*b));
  17.         System.out.println("Prosjek je: "+(a+b)*.5);
  18.  
  19.         System.out.println("Udaljenost je: "+Math.abs(a-b));
  20.     }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement