I have this program i'm trying to do.
Here's a very simplified version
It is very simple, but my problem is that when i print the number it is not 3.6 but 3.599999999999996 or something.
All i want to do is have the ' y ' to 2 decimal places.
1 2 3 | int x = 3 double y = x * 1.2 |