i am new in java ... i would like to know how 2 maintain an integer without having it to show the decimal after i manipulate it. Example:
int y = 5;
System.out.print(Math.pow(y,2));
it display 25.0 instead of 25 which i wan it to be. Help would be very appreciate :)