返回列表 發帖

[2-1]資料型態&變數使用



  1. string name = "Leo";
  2. char sex = 'M';
  3. int age = 30;
  4. double height = 180.3;
  5. bool is_male = true;
  6. System.Console.WriteLine("有一個人叫" + name);
  7. System.Console.WriteLine(name+"今年"+age+"歲");
  8. System.Console.WriteLine(name + "身高"+height+"公分");
複製代碼
istak.teach2@gmail.com

返回列表