fork download
  1. using static System.Console;
  2. using System.Globalization;
  3.  
  4. public class Program {
  5. public static void Main() {
  6. var numero = 896567M;
  7. var texto = string.Format(CultureInfo.CreateSpecificCulture("pt-BR"), "{0:F1}", numero / 1000);
  8. WriteLine(texto);
  9. }
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/56654/101
Success #stdin #stdout 0.02s 16380KB
stdin
Standard input is empty
stdout
896,6