isALeapYear[x_Integer]:=
If[(Mod[x,4]==0 && !Mod[x,100]==0) || (Mod[x,4]==0 && Mod[x,400]==0),ToString[x] <>" is a leap year", ToString[x] <> " is NOT a leap year"]
下面是我在努力自学 C# 时尝试解决来自 Exercism.com 的练习“Leap”。该网站建议来这里寻求帮助。我已经弄清楚了 Mathematica 中的逻辑(上图),但是当我dotnet run在终端中运行时,我的小 C# 程序没有返回任何内容。任何建议表示赞赏。
using System;
public static class Leap
{
public static bool IsLeapYear(int year)
{
if (year % 4 == 0 && year % 100 == 0)
{
return true;
}
else
{
return false;
}
}
public static void main()
{
int yearq = 2015;
bool result = IsLeapYear(yearq);
Console.WriteLine(result);
}
}
互换的青春
RISEBY
相关分类