How to get the first two digits after the decimal point of a float number in C#

1 Answer

0 votes
using System;
 
class Program
{
    static void Main() {
        float f = 872.2459f;
        string s = f.ToString();
  
        Console.Write(s.Substring(s.IndexOf(".") + 1, 2));
    }
}
 
 
 
/*
run:
 
24
 
*/

 



answered Aug 29, 2019 by avibootz
...