Files
SammelmappeOOP/EvenOrOddExtention/Program.cs
2024-07-25 15:47:46 +02:00

22 lines
453 B
C#

namespace EvenOrOddExtention
{
internal class Program
{
static void Main(string[] args)
{
int input = 105;
Console.WriteLine(input.EvenOrOdd());
}
}
static class EvenOrOddExtention
{
public static string EvenOrOdd(this int input)
{
if (input % 2 != 0)
{
return "Odd";
}
return "Even";
}
}
}