German Version created by Ben Herbst: https://www.benherbst.de/
öffentlich klasse Beispiel {
öffentlich statisch leer main(String[] args) {
zeichenkette alphabet = "abcdefghijklmnopqrstuvwxyz";
falls (alphabet.istGleich(alphabet)) {
System.out.drucken("wahr");
} sonst {
System.out.drucken("falsch");
}
}
}
während
- while
falls
- if
wahr
- true
falsch
- false
öffentlich
- public
privat
- private
geschützt
- protected
statisch
- static
leer
- void
stopp
- break
weiter
- continue
wechsel
- switch
klasse
- class
zeichenkette
- String
final
- final
null
- null
versuch
- try
fangen
- catch
gleicht
- equals
drucken
- print
sonst
- else
Thanks to zitreF for creating the Polish version which I forked for german!