摘要:
```c /*判断某个年份是不是闰年,如果是闰年,请输出"yes",如果不是闰年,请输出"no"*/ #include #include #pragma warning(disable:4996) int main() { int year; scanf("%d", &year); //闰年:能被4 阅读全文
posted @ 2023-06-05 22:22 来颗维C 阅读(35) 评论(0) 推荐(0)
|
|||
|
摘要:
```c /*判断某个年份是不是闰年,如果是闰年,请输出"yes",如果不是闰年,请输出"no"*/ #include #include #pragma warning(disable:4996) int main() { int year; scanf("%d", &year); //闰年:能被4 阅读全文
posted @ 2023-06-05 22:22 来颗维C 阅读(35) 评论(0) 推荐(0) |
|||