/******************************************************************************
Online C# Compiler.
Code, Compile, Run and Debug C# program online.
Write your code in this editor and press "Run" button to execute it.
*******************************************************************************/
using System;
class HelloWorld {
//عدد ايام الشهر
static void Month()
{
int month;
Console.Write("Please enter month:");
month = int.Parse(Console.ReadLine());
if (month < 1 || month > 12)
Console.WriteLine("Error!");
else
{
if (month == 2)
Console.WriteLine(28);
else
// {
if (month == 1 || month == 3 || month == 5
|| month == 7 || month == 8
|| month == 10 || month == 12
)
Console.WriteLine(31);
else
Console.WriteLine(30);
// }
}
}
static void Main() {
Console.WriteLine("Hello World");
Month();
}
}