Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static void main(String[] args) {
- double d1 = 3.4, d2=2;
- System.out.println(d1 + "+" + d2 + "=" + (d1+d2));
- System.out.println(d1 + "-" + d2 + "=" + (d1-d2)); // 3.4-2.0=1.4
- System.out.println(d1 + "*" + d2 + "=" + (d1*d2)); // 3.4*2.0=6.8
- System.out.println(d1 + "/" + d2 + "=" + (d1/d2)); // 3.4/2.0=1.7
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement