Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
public class LogTest {
private final static double LN_10 = Math.log(10.0D);
public static void main(String[] args) {
System.out.println(log10(10000)); // 4
}
private static double log10(double i) {
return Math.log(i) / (LN_10);
}
}
private static int getFigure(int zahl, int i,int log) {
return (int) ((zahl / Math.pow(10.0, log - i))) % 10;
}