指定小數(shù)位數(shù)輸出
static void Main(string[] args)
{
? ? ? ? ?double a = 3.33333333333;
? ? ? ? ?Console.WriteLine("{0:0}",a);//輸出3
? ? ? ? ?Console.WriteLine("{0:0.0}", a);//輸出3.3
? ? ? ? ?Console.WriteLine("{0:0.00}", a);//輸出3.33
? ? ? ? ?Console.WriteLine("{0:0.000}", a);//輸出3.333
? ? ? ? ?string?b = a.ToString("0.00000");
? ? ? ? ?Console.WriteLine(b);//直接輸出b,就是3.33333,一共有5位小數(shù)。
}//假如a.ToString括號(hào)里寫(xiě)的是0.00,那么b就會(huì)輸出3.33。

static void Main(string[] args)
{
? ? ? ? double a = 3.3666666666666;//如果是小數(shù),就會(huì)自動(dòng)四舍五入
? ? ? ? Console.WriteLine("{0:0}",a);//輸出3
? ? ? ? Console.WriteLine("{0:0.0}", a);//輸出3.4
? ? ? ? Console.WriteLine("{0:0.00}", a);//輸出3.37
? ? ? ? Console.WriteLine("{0:0.000}", a);//輸出3.367
? ? ? ? string b = a.ToString("0.00000");//輸出3.36667
? ? ? ??Console.WriteLine(b);
}
