Hello GEORGE!
Solution:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Csharp_exercises
{
class Program
{
static void Main(string[] args)
{
string name;
Console.Write("Please enter your name:");
name = Console.ReadLine();
Console.WriteLine("Hello {0}!", name);
Console.ReadLine();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Csharp_exercises
{
class Program
{
static void Main(string[] args)
{
string name;
Console.Write("Please enter your name:");
name = Console.ReadLine();
Console.WriteLine("Hello {0}!", name);
Console.ReadLine();
}
}
}
This comment has been removed by the author.
ReplyDelete