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

C#: Program #15 (For Loop)

using System; namespace Loops {     class Program     {         static void Main(string[] args)         {                         object[] information = {"Gray", "14-Arid-4052", "Rawalpindi",21,3.80};             for (int i = 0; i < information.Length; i++)             {                 Console.WriteLine("The value of index {0} is {1}",i,information[i]);             }                 Console.ReadKey();         }     } }