java integer.length code example
Example 1: how to get length of integer in java
int length = (int) (Math.log10(number) + 1);
Example 2: how to get length of integer in java
int length = 0;
long temp = 1;
while (temp <= number) {
length++;
temp *= 10;
}
return length;
Example 3: how to have a only number type in java
class scratch{
public static Number haha(Number yo){
return yo;
}
public static void main(String[] args) {
System.out.println(haha( (int) 5 ));
System.out.println(haha( (double) 5.0 ));
System.out.println(haha( (long) 5 ));
System.out.println(haha( (float) 5.0 ));
System.out.println(haha("Hey"));
}
}