Quiz review

Write the code for the loop that goes with each flowchart

while for

 

 

 

 

 

 

Draw the flowchart for each conditional

if (today is your birthday) say "Happy Birthday!" 
otherwise say "hello"
if (age >= 18) say "You can vote" 
otherwise say "not old enough to vote"
if (age >=18)
    if(today is your birthday)
       say "today you're old enough to vote!"
     else
       say "you can vote"
else
    say "not old enough to vote yet"