码迷,mamicode.com
首页 > Windows程序 > 详细

C# 格式化输出

时间:2019-07-03 22:59:16      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:space   ons   mes   text   names   read   collect   lin   pac   

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{
  class Program
  {
    static void Main(string[] args)
    {
      double n = 10.0 / 3;
      Console.WriteLine(n);
      Console.WriteLine("{0:0.00}", n); //保留两位小数
      string str = n.ToString("0.000"); //转成含三位小数的字符串
      Console.WriteLine(str);
      Console.ReadKey();

    }
  }
}

输出:

 

C# 格式化输出

标签:space   ons   mes   text   names   read   collect   lin   pac   

原文地址:https://www.cnblogs.com/zhaiyh/p/11129529.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!