/******************************************************/ /* Introduction to Programming */ /* By Dr. ANTF */ /* www.antf.net */ /* Copyright 2015 */ /* */ /* C# 301 - Loops (a) */ /******************************************************/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOS { class Program { static void Main(string[] args) { int i = 10; for (i = 10; i < 0; i++) { Console.WriteLine("Inside FOR loop"); } while (i < 0) { Console.WriteLine("Inside WHILE loop"); } do { Console.WriteLine("Inside DO-WHILE loop"); } while (i < 0); Console.ReadKey(); } } }