Advertisement
wingman007

Java - math operations

Nov 9th, 2013
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. public static void main(String[] args) {
  2.     double d1 = 3.4, d2=2;
  3.     System.out.println(d1 + "+" + d2 + "=" + (d1+d2));
  4.     System.out.println(d1 + "-" + d2 + "=" + (d1-d2)); // 3.4-2.0=1.4
  5.     System.out.println(d1 + "*" + d2 + "=" + (d1*d2)); // 3.4*2.0=6.8
  6.     System.out.println(d1 + "/" + d2 + "=" + (d1/d2)); // 3.4/2.0=1.7
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement