using System;
namespace Task2
{
class BirthDate
{
static void Main(string[] date)
{
var Month;
Console.WriteLine("Please enter your month of birth:");
Month = Console.ReadLine();
var Day;
Console.WriteLine("Please enter your day of birth:");
Day = Console.ReadLine();
Console.WriteLine("Your birth month is {0}, on day {1}", Month, Day);
Console.ReadLine();
}
}
}
當我嘗試編譯時,我從變量中得到兩個錯誤,我不知道如何解決它。隱式類型變量必須初始化
你會得到什麼錯誤? – Julian
使用'String',對每個人來說都更容易。這是一種強類型語言,所以強類型變量plz。 – Nyerguds