您好,登錄后才能下訂單哦!
static void Main(string[] args)
{
//請用戶輸入年份,再輸入月份,輸出該月的天數.(結合之前如何判斷閏年來做);
//用到之前的知識點有if-else,switch-case,try-catch;
//這個程序只作為學習知識點,比如多年和月多輸入不符合要求的就會報錯,這里不作深究;
Console.WriteLine("請輸入年份");
try
{ //把可能輸入不符合要求的try起來
int year = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("請輸入月份");
try
{
int month = Convert.ToInt32(Console.ReadLine());
//判斷月份天數及是否是潤年;
int day = 0; //聲明一個變量來存儲天數;
if (month >= 1 && month <= 12)
{
switch (month)
{ //1,3,5,7,8,10,12 為31天;
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
day = 31;
break;
//2月有潤年之分,排除2月;
case 2:
if (year % 400 == 0 || year % 4 == 0 && year % 100 != 0)
{
day = 29;
}
else
{
day = 28;
}
break;
//剩下的2,4,6,9,11為30天;
default:
day = 30;
break;
}
//輸出該月的天數;
Console.WriteLine("{0}年{1}月的實際天數是{2}", year, month, day);
}
else
{
Console.WriteLine("輸入的年份不正確,請重新輸入");
}
}//這個括號跟catch跟月份的try配對
catch
{
Console.WriteLine("輸入的月份不正確,請重新輸入");
}
}//這個括號跟catch跟年份的try配對
catch
{
Console.WriteLine("輸入的年份不正確,請重新輸入");
}
Console.ReadKey();
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。