using System; namespace Example4 { /// /// Summary description for Class1. /// class Class1 { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { double x = 85.0, y = 307; Console.WriteLine("x / y = {0:F5}" , x / y); } } }