Wednesday, May 25, 2022

وظيفة سي شارب

//first homework 18-5-22

string name;//name of student

string school;

int age;

Console.WriteLine("what is your name");

name = Console.ReadLine();

Console.WriteLine(" {0} is a nice name", name);

Console.WriteLine("{0} how old are you?",name);

age = int.Parse(Console.ReadLine());

Console.WriteLine("{1} You are {0} years old", age,name);

Console.WriteLine("{0} Whats the name of your school", name);

school = Console.ReadLine();

Console.WriteLine("{1} Your school is  {0} ", school, name);

No comments:

Post a Comment