Hw1)
Console.Write(
Can write without writing the end of line character.
using System;
class hw1
{
static void Main(string[] args)
{
Console.Write( "Enter Name:" );
string name = Console.ReadLine() ;
Console.Write( "Enter Age:" );
string age = Console.ReadLine() ;
Console.WriteLine( "Your name is:" + name + " Your age is:" + age );
Console.ReadLine();
}
}