Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
int c = 1;
while ((l = l / 10.0) > 1.0) {
c++:
}
long zahl;
int stellen = 0;
do {
stellen++;
} while((zahl = zahl / 10) != 0);
String.valueOf(zahl).length();
stellen = 0;
long a = 1, b, c;
do {
stellen++;
b = a << 3;
c = a << 1;
a = b+c;
}
while(a <= zahl && a>0);
stellen = 0;
long a = 1;
do {
stellen++;
a = ((a << 3) + (a << 1));
}
while(a <= zahl && a>0);
if(zahl<1000000000){
if(zahl<10000){
// 0 bis <10000
}
else{
// 10000 bis <1000000000
}
}
else{
if(zahl<10000000000000){
// 1000000000 bis <10000000000000
}
else{
// 10000000000000 bis MAX_VALUE
}
}
static long a = new Long("10000000000");
static long b = new Long("100000000000");
static long c = new Long("1000000000000");
static long d = new Long("10000000000000");
static long e = new Long("100000000000000");
static long f = new Long("1000000000000000");
static long g = new Long("10000000000000000");
static long h = new Long("100000000000000000");
static long j = new Long("1000000000000000000");