test_code

Lucas Lv5
1
2
3
4
5
6
7
8
#include <stdbool.h>
#include <stdio.h>
bool is_leap_year(int year) {
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
return true;
}
return false;
}
  • 标题: test_code
  • 作者: Lucas
  • 创建于 : 2025-11-20 19:44:06
  • 更新于 : 2025-11-20 19:44:38
  • 链接: https://darkflamemasterdev.github.io/2025/11/20/test-code/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
评论
目录
test_code