home *** CD-ROM | disk | FTP | other *** search
- /* A do-while loop II. */
- using System;
-
- namespace Chapter2 {
- class Class1 {
- static void Main() {
- string Quit;
-
- do { // do-while loop
- Console.WriteLine("\n Would you like to end this loop? ");
- Quit = Console.ReadLine(); // users input
- } while (Quit != "yes");
-
- Console.WriteLine("Program complete!\n");
- }
- }
- }
-