CS 116
Oct. 23, 2000
Assuming the following values:
int x = 11; int y = 6; int z = 1; char c = 'k'; char d = 'y';fully parenthesize and evaluate the following expressions. Assume that the ASCII character representation is used.
x > 9 && y != 3
x == 5 || y != 3
! ( x > 14 )
! ( x > 9 && y != 23 )
x <= 1 && y == 6 || z < 4
c >= 'a' && c <= 'z'
c >= 'A' || c <= 'Z'
c != d && c != '\n'
5 && y != 8 || false
x >= y >= z