Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static double getMaxInteger(float digit) {
String intStr = ((int) digit + "");
Integer intLength = intStr.length();
return Math.pow(10, intLength);
}
}