public static void Main()
Console.WriteLine("Loops and Examples");
Console.WriteLine("I have interated through the loop "+counter+" times. ");
Console.WriteLine("Sum of numbers between 1 and...");
int n = int.Parse(Console.ReadLine());
Console.Write(" + "+num1);
Console.WriteLine("The sum is: "+sum);
Console.WriteLine("Enter a name, if you want toexit leave blank: ");
myName = Console.ReadLine();
Console.WriteLine("You've entered in a name of: "+myName);
Console.WriteLine("-----------FOR LOOP --------");
for(int x = 10; x >= 0; x--)
Console.WriteLine(", "+x);
for(int a = 0; a<=10; a++)
for(int a = 0; a <= 10; a++)