Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Articulo.Pregunta.P1720
- {
- public class FormatoDecimal
- {
- public static void Main()
- {
- Console.WriteLine ();
- // Definición variable decimal:
- decimal valor = 951753456.951753456M;
- Console.WriteLine (valor);
- Console.WriteLine ();
- Console.WriteLine (valor.ToString("#.##"));
- Console.WriteLine (String.Format("{0:0.00}", valor));
- Console.WriteLine (valor.ToString("N2"));
- Console.WriteLine ("{0:C}", valor);
- Console.WriteLine ();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement