Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
10
Task/Logical-operations/QB64/logical-operations.qb64
Normal file
10
Task/Logical-operations/QB64/logical-operations.qb64
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
Dim As _Unsigned _Bit First, Second
|
||||
First = 0: Second = 1
|
||||
Print " Operator F S results "
|
||||
|
||||
Print " AND 1 0 "; First And Second
|
||||
Print " XOR 1 0 "; First Xor Second
|
||||
Print " OR 1 0 "; First Or Second
|
||||
Print " NOT 1 "; Not First
|
||||
Print " EQV 1 0 "; First Eqv Second
|
||||
Print " IMP 1 0 "; First Imp Second
|
||||
Loading…
Add table
Add a link
Reference in a new issue