%--------------------------------------------------------------------- % Name: Aristotle of Stagira % Number: 00000000 % Course: CS104 % Instructor: Socrates % TA: Plato % Assignment Section: Part 2 %--------------------------------------------------------------------- var OriginalDate:string % holds the date put "To stop the program, type the word quit" loop % prompt the user for a date put "" put "Enter a date in international format: " put " with quotation marks around it: ".. get OriginalDate % exit loop if "quit" was typed exit when OriginalDate = "quit" % show what was typed put "You typed ".. put OriginalDate end loop % termination message put "" put "Thank you for running the program"