1 条题解

  • 1
    @ 2024-7-25 12:55:39

    参考答案:

    #include<iostream>
    
    using namespace std;
    
    int main() 
    {
    	int n;
    
    	cin >> n;
    	if (n % 400 == 0 || (n % 4 == 0 && n % 100 != 0)) cout << "yes";
    	else cout << "no";
    
    	return 0;
    }
    
    • 1

    信息

    ID
    59
    时间
    1000ms
    内存
    64MiB
    难度
    10
    标签
    递交数
    8
    已通过
    5
    上传者