程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c語言-C語言求大家解答,怎麼改都出錯

c語言-C語言求大家解答,怎麼改都出錯

編輯:編程綜合問答
C語言求大家解答,怎麼改都出錯

#include
#include
#define MONTHS 12
int main()
{
int years,month,ret,day,a,math=0;
printf("Input:");
int days[2][MONTHS]={{31,28,31,30,31,30,31,31,30,31,30,31},{31,29,31,30,31,30,31,31,30,31,30,31}};
ret=scanf("%d/%d/%d",&years,&month,&day);
while((ret!=1)||month12)
{
while(getchar()!='\n');
ret=scanf("%d/%d/%d",&years,&month,&day);
}
if(month==1)
{
math=day;
}
else
{
math=day;
if(((years%4==0)&&(years%100!=0))||(years%400==0))
{
for(a=1;a<month;a++)
{
math=days[0][month-a-1]+math;
}
}
else
{
for(a=1;a<month;a++)
{
math=days[1][month-a-1]+math;
}
}
printf("%d",math);
return 0;
}
程序一直報錯 expected declaration or statement at end of input
都要瘋了求解答

最佳回答:


if(month==1)
{
math=day;
}
else
{
math=day;
這一個else少了個右花括號

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved