C#簡略的特別輸入實例。本站提示廣大學習愛好者:(C#簡略的特別輸入實例)文章只能為提供參考,不一定能成為您想要的結果。以下是C#簡略的特別輸入實例正文
本文實例講述了C#簡略的特別輸入。分享給年夜家供年夜家參考。
詳細實例以下:
class Program
{
static void Main(string[] args)
{
int i = 940;
int j = 73;
Console.WriteLine("{0,5}\n+{1,4}\n------\n{2,4}",i,j,i+j);
decimal a1 = 940.23m;
decimal a2 = 73.7m;
Console.WriteLine("{0,9:C2}\n+{1,9:C2}\n-----\n{2,9:C2}",a1,a2,a1+a2);
Console.ReadKey();
}
}
輸入成果以下圖所示:
願望本文所述對年夜家的C#法式設計有所贊助。