「C#入門」小数点以下の桁数を指定するサンプル
書式
表示したい桁数分だけ#を並べます。
コード
using System;
namespace Sample
{
class Sample
{
static void Main()
{
double aa= 99.145;
Console.WriteLine(String.Format(“{0:#}, {0:#.##}", aa));
Console.ReadKey();
}
}
}
結果:
99, 99.15
Coding Changes the World
書式
表示したい桁数分だけ#を並べます。
コード
using System;
namespace Sample
{
class Sample
{
static void Main()
{
double aa= 99.145;
Console.WriteLine(String.Format(“{0:#}, {0:#.##}", aa));
Console.ReadKey();
}
}
}
結果:
99, 99.15