日期: 2024 年 6 月 17 日

1 篇文章

洛谷GESP C++上机题
一级 [GESP样题 一级] 闰年求和 #include<bits/stdc++.h> using namespace std; bool is_run(int y) { return ((y % 4 == 0 && y % 100 != 0) || (y % 400 == 0)); } int main() { int…