编写一个判定给定年份是否为闰年的函数
答案:2 悬赏:10 手机版
解决时间 2021-04-07 07:34
- 提问者网友:两耳就是菩提
- 2021-04-06 11:44
编写一个判定给定年份是否为闰年的函数
最佳答案
- 五星知识达人网友:举杯邀酒敬孤独
- 2021-04-06 13:05
#include
int is_run(int year)
{return year % 4 == 0 && year % 100 != 0 || year % 400 == 0;}
int main()
{printf("%d\n", is_run(2008));
return 0;}
int is_run(int year)
{return year % 4 == 0 && year % 100 != 0 || year % 400 == 0;}
int main()
{printf("%d\n", is_run(2008));
return 0;}
全部回答
- 1楼网友:三千妖杀
- 2021-04-06 13:24
#include
int R(int x)
{
if (x%4==0 && x%100!=0 || x%400==0)
{printf("%d year is Runian!",x);
return;}
else
{printf("%d year is not Runian!",x);
return;}
}
main()
{
int x;
printf("please press the year is :");
scanf("%d",&x);
R(x);
}
我手头正好有,呵呵
int R(int x)
{
if (x%4==0 && x%100!=0 || x%400==0)
{printf("%d year is Runian!",x);
return;}
else
{printf("%d year is not Runian!",x);
return;}
}
main()
{
int x;
printf("please press the year is :");
scanf("%d",&x);
R(x);
}
我手头正好有,呵呵
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯