zoukankan      html  css  js  c++  java
  • c#小Tip:数字格式化显示 无为而为

    using System;

    class FormattingNumbers
    {
      
    static void Main()
      
    {
        
    decimal theDecNumber = 12345.678m//the "m" creates a literal of type decimal from a double
        
    //Using the ToString Method
        
    //the number in the format string is the precision specifier
        Console.WriteLine("No formatting: " + theDecNumber.ToString());
        Console.WriteLine(
    "Currency formatting: " + theDecNumber.ToString("C"));
        Console.WriteLine(
    "Exponential formatting: " + theDecNumber.ToString("E"));
        Console.WriteLine(
    "Fixed-point formatting: " + theDecNumber.ToString("F2"));
        Console.WriteLine(
    "General formatting: " + theDecNumber.ToString("G"));
        Console.WriteLine(
    "Number formatting to 2 decimal places: " + theDecNumber.ToString("N2"));
        Console.WriteLine(
    "Number formatting to 3 decimal places: " + theDecNumber.ToString("N3"));
        Console.WriteLine(
    "Number formatting to 4 decimal places: " + theDecNumber.ToString("N4"));
        Console.WriteLine(
    "Percent formatting: " + theDecNumber.ToString("P0"));

        
    int theIntNumber = 123456;
        Console.WriteLine(
    "Hexidecimal formatting (for integers): {0} = {1}", theIntNumber, theIntNumber.ToString("X"));

        
    double theDblNumber = 1234567890;
        Console.WriteLine(
    "Custom formatting: {0} to US telephone {1}", theDblNumber, theDblNumber.ToString( "(###) ### - ####" ));

        
    //Keep console open if not run through command prompt
        Console.Write("\nPress Enter to Continue");
        Console.ReadLine();
      }

    }

      
  • 相关阅读:
    SDUT-3376_数据结构实验之查找四:二分查找
    SDUT-3375_数据结构实验之查找三:树的种类统计
    SDUT-3373_数据结构实验之查找一:二叉排序树
    深度优先遍历和广度优先遍历
    SDUT-2498_AOE网上的关键路径
    SDUT-2140_判断给定图是否存在合法拓扑序列
    SDUT-2144_最小生成树
    SDUT-3364_欧拉回路
    SDUT-3363_驴友计划
    Java练习 SDUT-2271_Eddy的难题
  • 原文地址:https://www.cnblogs.com/cleo/p/464507.html
Copyright © 2011-2022 走看看