Reading sentence from user

using System;
class Program
{
    public static void Main(String[] args)
    {
        Console.WriteLine("Please Enter your name");
        string str = Console.ReadLine();
        Console.WriteLine("Hello " + str);
    }
}

No comments:

Post a Comment