 
 
 
 
 
 
The reading and homework for this week can be found here: Lab 3: Decisions
For practice, check out the WileyPlus Chapter 3 Flash Cards!
if statement 
condition and body
if-else statement
multi-way if-else
nested if-else
boolean value, expressionrelational operator (<, >, <=, >=, ==) 
boolean operators (&&, ||, !)
lexicographic ordering (of Strings)
De Morgan's Laws
Enumeration types
<, >, <=. >=, ==, != 
 ==. Instead, use myString1.equals(myString2)
int bigger = (x>y) ? x : y ;
 
 
 
 
 
