Round Int Java

double num = 35.005;
int round_int = Math.round(num).intValue();
Rockbloster