Andy's blog

If you always do what you've always done, you'll always get what you've always got.

0%

2020-10-27-.Net 主控台介紹

今天介紹主控台


參考資料:
從零開始學Visual C#2015程式設計
Console 的變數以及取代用法


讀取資料

  • Console.ReadLine()
    用來讀取使用者輸入的字串如下範例:
    1
    2
    string name  = Console.ReadLine();
    Console.WriteLine($"Good Day! {name}");

輸出資料

  1. Console.Write(String) 輸出字元不換行
  2. Console.WriteLine(String) 輸出字元自動換行

格式化輸出

例如:

1
2
3
4
5
6
7
{0:C} 將數字轉為金額的字串
int a = 123456;
Console.WriteLine("{0:C}",a); //$123,456.00

int y = 10;
Console.WriteLine("印出字串變數y={0}", y); //要印第二個參數 必須加入取代{0}
//結果:印出字串變數y=10