在程序中遇到一些麻煩,目前在編程課程的第二週如此不好,如果這不是最好的地方問。c#要檢查一年是否是沒有日期時間的閏年
class Program
{
static void Main(string[] args)
{
int a;
Console.WriteLine("Enter the year");
a = int.Parse(Console.ReadLine());
{
if ((a % 4) == 0)
Console.WriteLine("It's a leap year.");
else
Console.WriteLine("It's not a leap year.");
}
Console.ReadLine();
}
}
在這方面有很多麻煩。
爲什麼有'{} ''圍繞'if'語句阻止? – Benj
你有做過什麼研究嗎?用於檢查整數是閏年的編程公式可以在Google – techydesigner