Attendance: 

mahazuga: Mary Ann
serepate: Serena
hgarciah: Henri
 balbakr: Bakr
  ruifan: Rui
mzelenin: Matthew
    jnp2: Jay
  zeyang: Zejun
zhang486: Jingyun
                                   yiwecao: Yiwei
rthammon: Ryan
 wang686: Jiaxing
dweissma: Andrew
  kevcao: Kevin
ssalmero: Santi
   luo23: Yawen
runxzhao: Runxia
 dgerman: Adrian 
                                     creba: Chris

On a piece of paper please answer:

  (a) what are your expectations for tomorrow's exam?

  (b) specifically what are you unclear on still? 

2:40pm I will collect them at 2:45pm 


Here's an example of a while loop:

INIT

while ( COND ) {
  BODY 
  STEP 
}

The do-while is like this (a loop written with do-while): 

INIT
do {
  BODY
  STEP
} while (COND);

How do you convert this second one to the first:

INIT
BODY
STEP
while(COND) {
  BODY
  STEP
}

https://www.cs.indiana.edu/classes/c212-dgerman/fall2016/resources/rctmpx/3692.html

See Exercise 6.19 in the text (above). 

   true || ! false && false 

   (true + ((- false) * false)) 

   (true || ((! false) && false)) 

   (true || (true && false))

   (true || false) 

   true