文章

19

粉丝

47

获赞

0

访问

11.5k

头像
计算天数 题解:C
P1433 北京理工大学机试题
发布于2024年9月5日 20:53
阅读数 906

#include<stdio.h>
#include<math.h>
int ret_day(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(((year%4)==0&&(year%100)!=0)||(year%400==0))
                    return 29;
                else 
                    return 28;
        ...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发