做一个计算闰年计算机。输入一个年份,点击按钮计算出这一年的二月份是28还是29天

这个怎么写  谢谢

慕斯卡5910870
浏览 2247回答 5
5回答

田心枫

function isLeapYear(year) //闰年能被4整除且不能被100整除,或能被400整除。 < script language=’javascript’> function isLeapYear(year) {  return (year % 4 == 0) && (year % 100 != 0 || year % 400 == 0);  } < /script>

司风0

补JAVA(ಡωಡ)hiahiahia public int isYer(int year){ if( year%4 == 0 && year % 100 != 0 || year % 400 == 0 ) return 1;//闰年 else return 0; }

rebirth_kangkang

...算法不会,还是界面不会,算法://闰年能被4整除且不能被100整除,或能被400整除界面看自己是vc还是c#还是后台

慕粉3342523

#include<stdio.h>int main(){    int year,result;    scanf("%d",&year);    if( year%4 == 0 && year % 100 != 0 || year % 400 == 0 )        result=1;//闰年也可以写result =29;为2月份天数    else         result=0;    printf("%d",result);    return 0;//非闰年也可以写result =28;为2月份天数}//希望采纳

田心枫

#include<stdio.h>   int main() {     int year,result;     scanf("%d",&year);     if( year%4 == 0 && year % 100 != 0 || year % 400 == 0 )         result=1;     else          result=0;     printf("%d",result);     return 0; }
打开App,查看更多内容
随时随地看视频慕课网APP