diff options
author | Oskar <[email protected]> | 2024-08-16 22:09:58 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-08-16 22:09:58 +0200 |
commit | aa9b47d8f1a8b3fac4d80276401e6d0884edb86a (patch) | |
tree | 19fc006b979a0202b5095291896fd5679c4a5036 /4p8.cpp | |
parent | bfa29c55fd58912845b5a6684489231a4d4e675e (diff) |
more
Diffstat (limited to '4p8.cpp')
-rw-r--r-- | 4p8.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +#include <iostream> + +/* + * + * 4.8 + * + * + */ + +int main () { + + // AND, OR + // AND's right operand is only evaluated if the left operand is True + // OR's right operand is only evaluated if the left operand is False + // Equality evaluates left and right and then checks if they are equal + return 0; +} |