1. 程式人生 > >c#輸入年份測試平年閏年

c#輸入年份測試平年閏年

設計視窗:
在這裡插入圖片描述
輸入一個年份,點選判斷按鈕時,判斷平年還是閏年.
普通年:能被4整除但不能被100整除的年份為普通閏年。
世紀年:能被400整除的為世紀閏年。
平年就是除了閏年以外的年份都是平年。
程式碼:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace _02測試平年閏年
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int year = int.Parse(textBox1.Text);
            int i = year % 4;
            int j = year % 400;
            if (i==0||j==0)
            {
                label2.Text = year.ToString() + "是閏年";
            }
            else
            {
                label2.Text = year.ToString() + "是平年";
            }
        }
    }
}