Introduction To Programming Using C#: By: Eng - Omar Islam
Introduction To Programming Using C#: By: Eng - Omar Islam
Programming
Using C#
Lab 2
By:
Eng.Omar Islam
Content
• Console.WriteLine(“Omar”);
_______________________________________
• int x =5;
• int x; //Declaration
x = 5; //Initialization
int x=6,y=3;
s=x+Y;
Console.Writeline(“The first number is:”+ x);
Console.WriteLine(“The Second number is:”, y);
Console.WriteLine(“The Summation of {0} and {1} = {2}” ,x,y,s);
1- The application will not run for some errors .. Find these errors and correct them.\