| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 785 人关注过本帖
标题: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
快速回复:C2059 语法错误=
数据加载中...
 
   



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

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