1
0
Fork 0

Finish simple_expressions example

This commit is contained in:
Timothy Warren 2021-09-30 13:49:53 -04:00
parent be71569f56
commit f8eb36a4e0
2 changed files with 7 additions and 2 deletions

View File

View File

@ -9,9 +9,14 @@ var
begin
WriteLn('Initial value of b is ', b, '; initial value of c is ', c, sLineBreak);
b := b shr 1; // >> shift right
c := shl 4; // << shift left
c := c shl 4; // << shift left
WriteLn('After b shr 1, b is ', b, '; after c shl 4, c is ', c, sLineBreak);
WriteLn('c xor b = ',c xor b, '; c and b = ', c and b, '; c or b,'
WriteLn('c xor b = ',c xor b, '; c and b = ', c and b, '; c or b = ', c or b);
WriteLn('not c is ', not c, '; not b is ', not b);
WriteLn;
WriteLn('c > b is ', c > b, '; c < b is ', c < b, '; c <> b is ', c <> b, '; c = b is ', c = b);
WriteLn;
WriteLn('c div b is ', c div b, '; c mod b is ', c mod b);
{$IFDEF WINDOWS}
ReadLn;
{$ENDIF}