fork download
  1. internal static class Program
  2. {
  3. private static void Main()
  4. {
  5. decimal d = 14.8447m;
  6. string s = d.ToString(System.Globalization.CultureInfo.InvariantCulture);
  7.  
  8. int index = s.IndexOf('.');
  9. string t = index >= 0 && index + 1 < s.Length
  10. ? s.Substring(index + 1)
  11. : string.Empty;
  12.  
  13. System.Console.WriteLine(t);
  14. }
  15. }
Success #stdin #stdout 0.04s 38072KB
stdin
Standard input is empty
stdout
8447