刚学c语言做题时运行出现debug error怎么解决? 255
#include<stdio.h>intmain(){intx;if(x>=1){if(x%400==0||x%4==0&&x%100!=0){printf("Yes\n...
#include<stdio.h>
int main()
{
int x;
if(x>=1)
{
if(x%400==0||x%4==0&&x%100!=0)
{
printf("Yes\n");
}
else
{
printf("No\n");
}
}
else
{
printf("Input error!\n");
}
return 0;
} 展开
int main()
{
int x;
if(x>=1)
{
if(x%400==0||x%4==0&&x%100!=0)
{
printf("Yes\n");
}
else
{
printf("No\n");
}
}
else
{
printf("Input error!\n");
}
return 0;
} 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询