I\'m trying to do some basic math and it keeps popping up as 0. I\'m sure it has to do with it being an int but I don\'t know how to work around it
0
int
Your result is being cast as an int, so you are losing precision.
Try
double exp1 = 14/20.0*100;