namespace Galagate_bscs2b_my15th
{
class Program
{
static void Main(string[] args)
{
string name, live, age, myfather, mymother;
Console.WriteLine("What is your name:");
name = Console.ReadLine();
Console.WriteLine("Where do you live:");
live = Console.ReadLine();
Console.WriteLine("How old are you?");
age = Console.ReadLine();
Console.WriteLine("Who is your father?");
myfather = Console.ReadLine();
Console.WriteLine("Who is your mother");
mymother = Console.ReadLine();
Console.Write("\n \n \n \n \n");
Console.Write("My name is {0} ", name);
Console.Write("Iam {0}.", age);
Console.Write("I live in {0}.", live);
Console.Write("My father's name {0}.", myfather);
Console.Write("My Mother's name is {0}.", mymother);
Console.ReadKey();
}
}
}
Walang komento:
Mag-post ng isang Komento