public static void Main()
Console.Write("Insert any floating point number which is less than 1 with 5 decimal points ");
number = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("The number in currency format is {0:C}",number);
Console.WriteLine("The number in Floating point format rounded to two decimal place is {0:F2}",number);
Console.WriteLine("The number in Scientific notation rounded to one decimal place is {0:E1}",number);
Console.WriteLine("The number in percentage rounded to one decimal place is {0:P1}",number);