• C#--格式化数值数据


    如果数值数据需要更精细的格式化,每一个占位符都可以包含不同的格式字符,下表展示了核心格式化选项。

    image
     

    下面用一个例子来说明。

     1 namespace LearningCSharp
     2 {
     3     class Program
     4     {
     5         static void Main(string[] args)
     6         {
     7             FormatNumber();
     8             Console.ReadKey();
     9             
    10         }
    11 
    12         static void FormatNumber()
    13         {
    14             Console.WriteLine("The value 99999 in different ways:");
    15             Console.WriteLine("c format : {0:c}",99999);
    16             Console.WriteLine("d9 format : {0:d9}",99999);
    17             Console.WriteLine("f format : {0:f3}", 99999);
    18             Console.WriteLine("g format : {0:g}", 99999);
    19 
    20             Console.WriteLine("n format : {0:n}",99999);
    21             Console.WriteLine("E format : {0:E}",99999);
    22             Console.WriteLine("e format : {0:e}",99999);
    23             Console.WriteLine("X format : {0:X}",99999);
    24             Console.WriteLine("x format : {0:x}",99999);
    25         }
    26     }
    27 }
    
    

    image

    如果想要了解更多关于.net字符串的格式化,可以查阅.net framework 文档的Formatting Type主题。

  • 相关阅读:
    jdbc连接2(不可以注入)
    大白dmeo (转的)
    管家婆系统
    RMQ求最值
    Codeforces 837E Vasya's Function 数论 找规律
    Codeforces 837D
    poj 1655 找树的重心
    HDU 4055 Number String 计数DP
    Summer training round2 #7 (Training #23)
    Summer training round2 #6 (Training #22)
  • 原文地址:https://www.cnblogs.com/tamarous/p/4321024.html
Copyright © 2020-2023  润新知