float to integer code example
Example 1: android studio float to int
int i = Math.round(f); // f a float
Example 2: convertir un float en int en java
int bob = (int) 3.14; \\ bob = 3
int i = Math.round(f); // f a float
int bob = (int) 3.14; \\ bob = 3