标题:C2059 语法错误=
取消只看楼主
清青小小
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2016-10-29
结帖率:0
已结贴  问题点数:20 回复次数:0 
C2059 语法错误=
编程新手的一个问题
很简单的一个程序 要求输出各月的天数 为什么最后老是会出现一个“errorC2059 语法错误=”?
程序如下
#include<stdio.h>
main()
{ int y,m;
  printf("input year month:");
  scanf("%d%d",&y,&m);
 if(m==1||m==3||m==5||m==7||m==8||m==10||m==12)
  printf("the days of this month is 31");
 if(m==4||m==6||m==9||m==11)
  printf("the days of this month is 30");
 if((m==2)&&(y%4==0&&y%100!==0||y%400==0))
  printf("the days of this month is 29");
 if((m==2)&&(y%4!==0))
  printf("the days of this month is 28");
}
搜索更多相关主题的帖子: include 
2016-10-29 10:43



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-470422-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.159714 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved