Skip to main content

C#:Program #10 (Output format shortcuts)

using System;

namespace Output_Formats
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("I bought a {0:c} laptop",390); //by default c is $

            Console.WriteLine("Padding a number with zeros {0:d6}",3);// add x-1 zeros before written number where x is any no written with d.

            Console.WriteLine("Roundoff to two decimals {0:f2}",23.4455554444);

            Console.WriteLine("Commas and dots {0:n5}",230);

            Console.ReadKey();
        }
    }
}

Comments

Popular posts from this blog