Lecture Notes on 12 Sep 2011 int x = 3; // literal double area = length * width; // not literal if (x > 2) // do this if (y < 3) // do that else // else goes with closest if // do something else // x is a two-digit number if ((x >= 10) && (x <= 99)) { // do this } if ((x >= 100) && (x <= 999) && (x % 2 == 1)) { } if ((x % 17 == 0) && (x >= 17)) { } if (60 % x == 0) { } if ((year % 400 == 0) || ((year % 100 != 0) && (year % 4 == 0))) { }