How to show only two decimal places after the dot in console with C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        float f = 97893.841f;
        
        Console.WriteLine("{0:N2}", f);
        Console.WriteLine("{0:0.00}", f);
    }
}



/*
run:

97,893.84
97893.84

*/

 



answered Sep 13, 2020 by avibootz

Related questions

...