Hallo, Was bedeutet diese Codezeile?
Java:
int d = this.w < this.h ? this.w : this.h;
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 d = this.w < this.h ? this.w : this.h;
int d = 0;
if (this.w < this.h)
d = this.w;
else
d = this.h;
int d;
if (this.w < this.h) {
d = this.w;
}
else {
d = this.h;
}
Hallo, Was bedeutet diese Codezeile?
int d = this.w < this.h ? this.w : this.h;