问答详情
源自:4-17 switch与if语句的应用

请大佬指教一下,哪有问题

#include <stdio.h>
int main()
{
    /* 定义需要计算的日期 */
    int year = 2008;
    int month = 8;
    int day = 8;
    switch(month)
    {
   
    int date=0;
    int j;
    case 12:date+=30;
    case 11:date+=31;
    case 10:date+=30;
    case 9:date+=31;
    case 8:date+=31;
    case 7:date+=30;
    case 6:date+=31;
    case 5:date+=30;
    case 4:date+=31;
    case 3:date+=29;
    case 2:date+=30;
    case 1:date-=1;break;
       
    }
    if((year%4==0&&year%100!=0)||year%400==0)
   
   
        j=0;
    else
       j=1;
         date=date+j+day;
        printf("2008年8月8日是本年的第%d天",date);


 return 0;
}


提问者:IMYSA 2018-09-15 21:37

个回答

  • 小帅f
    2018-09-16 09:56:29

    https://img.mukewang.com/5b9db80100019c9201630123.jpg

    将date,j定义到switch外面,因为switch是直接跳转,不执行这两句