编程成长之路

我们都是站在父母的肩上去看他们不曾看到的风景!加油!
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2023年6月5日

摘要: ```c /*判断某个年份是不是闰年,如果是闰年,请输出"yes",如果不是闰年,请输出"no"*/ #include #include #pragma warning(disable:4996) int main() { int year; scanf("%d", &year); //闰年:能被4 阅读全文

posted @ 2023-06-05 22:22 来颗维C 阅读(24) 评论(0) 推荐(0) 编辑