Wednesday, December 9, 2015

6. Asking Questions

IN:
using System;

public class Test
{
     public static void Main()
     {
           string s;
          Console.WriteLine("How old are you?");
          s = Console.ReadLine();
          Console.WriteLine("So, you are "+ s +" old.");
     }
}

OUT:
So, you are 23 old.

No comments:

Post a Comment