Online Time 10/15 Topics Questions / Requests 1. Assignment 3 review 2. A few if statement examples 3. A little CodeLab work 4. Assignment 4 brainstorming -------------------------------- int x = rand() % 10 + 1; 1. if (x > 6) cout << "big"; 2. if (x > 6) cout << "big"; else cout << "small"; 3. string size; if (x > 6) size = "big"; else size = "small"; string eo; if (x%2==0) eo = "even"; else eo = "odd"; cout << "x is " ///////////////////////////////// Lowest grade unsigned short lowest = 21; unsigned short a1,a2,a3,a4 ... if (a1 < lowest) lowest = a1; if (a2 < lowest) lowest = a2; if (a3 < lowest) lowest = a3; if (a4 < lowest) lowest = a4; if (a5 < lowest) lowest = a5;