Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Im Code sieht dies so aus:

Infocode
int x=10;

if(x == 10)

{

  

{
   println("x ist gleich 10");

}

else

{

  

{
   println("x ist nicht gleich 10");

}


Der Code ist fast eine verständliche Sprache:
Wenn x gleich 10 ist, schreibe “x ist gleich 10″, wenn nicht dann schreibe “x ist nicht gleich 10″

...