using System; namespace Example22 { /// /// Summary description for Class1. /// class Class1 { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { for (double i = 1.5; i < 5.2; i++) { Console.WriteLine("i= " + i); } } } }