How could I always round up a double to an int, and never round it down. I know of Math.round(double), but I want it to always round u
double
int
Math.round(double)
Math.ceil() will give you the closest lowest value if you want it to be rounded to largest closest values you should use Math.floor()
Math.ceil()
Math.floor()