diff options
author | caminsha <c.96marco@hotmail.com> | 2020-01-30 17:50:09 +0100 |
---|---|---|
committer | caminsha <c.96marco@hotmail.com> | 2020-01-30 17:50:09 +0100 |
commit | de19c7fbe18a1307a1ebcea02d683366c231b133 (patch) | |
tree | 2fd3c2916cf08ff1256c1e781e36b19aa707e004 | |
parent | f3f32e2d814650db6ce633a73ba99ef0c8ceaef1 (diff) |
added ternary operator
-rw-r--r-- | de-de/bc.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/de-de/bc.html.markdown b/de-de/bc.html.markdown index 3e04f2a7..49a2878d 100644 --- a/de-de/bc.html.markdown +++ b/de-de/bc.html.markdown @@ -54,10 +54,10 @@ num = blankVariable /*num wurde auf 0 gesetzt.*/ /*Wie in C ist nur 0 falsch.*/ if(!num) {print "false\n"} -/*Im Gegensatz zu C hat bc die Operatoren ?: nicht. Zum Beispiel +/*Im Gegensatz zu C hat bc den Ternäroperator ?: nicht. Zum Beispiel führt dieser Codeblok zu einem Fehler: a = (num) ? 1 : 0 -/*Jedoch kann dies simuliert werden:*/ +Jedoch kann dies simuliert werden:*/ a = (num) && (1) || (0) /*&& ist das UND, || ist das ODER*/ /*For-Schleifen*/ |