1 Star 0 Fork 8

Mountain丶/Xipkpublib_Update

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
GetMonDays.c 833 Bytes
一键复制 编辑 原始数据 按行查看 历史
suitianmou 提交于 2016-03-17 14:03 . ʼ1.2汾
/*******************************************************
* 公 司: 大连同方软银科技有限公司
* 程 序 名: GetMonDays.c
* 程序功能: 获取某年某月天数
* 输入参数:
* year 年
* month 月
* 输出参数:
* 返 回 值:
* days 天数
* 作 者: yangwc
* 开发日期: 2008/11
* 修 改 人:
* 修改日期:
*******************************************************/
#include "kernel/syspub.h"
int GetMonDays(int year, int month)
{
switch (month) {
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
return 31;
case 4:
case 6:
case 9:
case 11:
return 30;
case 2:
if (ChkLeapYear(year) == 1)
return 29;
else
return 28;
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/OnePieceMountain/Xipkpublib_Update.git
git@gitee.com:OnePieceMountain/Xipkpublib_Update.git
OnePieceMountain
Xipkpublib_Update
Xipkpublib_Update
master

搜索帮助