home *** CD-ROM | disk | FTP | other *** search
- /* A nonresponsive program. */
- using System;
-
- namespace Chapter2 {
- class Class1 {
- static void Main() {
- // Begin main
- int cResponse;
-
- // Step 1 û try typing N for NO
- Console.WriteLine ("Input <Y> for YES: ");
-
- // Step 2
- cResponse = Console.Read ();
-
- // Step 3
- Console.WriteLine ("\n You typed Y\n");
- }
- }
- }
-
-