[solved] – Question 98965
Draw a student schedule by using a while loop. Ask the user for their first and last names, and then a list of their classes and room numbers. Output should look like this:
What is your first name? Ada
What is your last name? Lovelace
Student ID: 3456
*************************************************
* *
* Lovelace, Ada ID: 3456 *
* *
*************************************************
* *
Enter the next class, STOP to end: English 11
Enter the room number: 456
* Block 1: English 11 Room: 456 *
Enter the next class, STOP to end: STOP
* *
*************************************************
* *
*************************************************
Expert Answer
OR