洛谷GESP C++上机题 2024-6-17 19:09 | 81 | 0 | 🎓 理工 一级 [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…