public static void Main()
Console.WriteLine("x + y = "+ (x + y));
Console.WriteLine("x - y = "+ (x - y));
Console.WriteLine("x++ = "+ (x++));
Console.WriteLine("x-- = "+ (x--));
Console.WriteLine("++x = "+ (++x));
Console.WriteLine("int => \t\t"+myInt+"\t\t\t\tUse for whole numbers without a fractional part ");
double myDouble = 3.14159265359;
Console.WriteLine("double => \t"+myDouble+" \tUse for numbers with a decimal point, or when you need higher precision. ");
decimal myDecimal = 1234.5678m;
Console.WriteLine("decimal => \t"+myDecimal+" \t\tUse for financial or monetary calculations requiring high precision. ");
Console.WriteLine("decimal => \t"+myFloat+"\t\t\tUse when you need a floating-point type with lower precision than double. ");
Console.WriteLine((int)myDouble);
Console.WriteLine("a = "+ (a));
Console.WriteLine("a += "+ (a));
Console.WriteLine("a -= "+ (a));
Console.WriteLine(Math.Round(myDouble));
Console.WriteLine(Math.Pow(a,2));
Console.WriteLine(Math.Sqrt(y));
Console.WriteLine(Math.Pow(a,2));
Console.WriteLine(Math.Min(1,4));
Console.WriteLine(Math.Max(1,4));
String myString = "Hello";
Console.WriteLine(myString);
myString = myString+" World";
Console.WriteLine(myString);
Console.WriteLine(myString+" "+w);