導航:首頁 > 軟體知識 > 程序每一年每個月有多少天

程序每一年每個月有多少天

發布時間:2024-07-04 21:02:17

Ⅰ java程序一年裡一個月有多少天

package Day02;
import java.util.Scanner;
public class YearandMonth {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("請輸入年份>");
int year = scan.nextInt();
System.out.println("請輸入月份");
int month = scan.nextInt();
if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12){
System.out.println("該月份有31天");
}else if (month == 2){
if(year % 4 == 0 && year % 100 != 0 || year % 400 == 0){
System.out.println("該月份有29天");
}else{
System.out.println("該月份有28天");
}
}else if (month == 4 || month == 6 || month == 9 || month == 11){
System.out.println("該月份有30天");
}else{
System.out.println("沒有該月份");
}

}
}

Ⅱ c語言編寫程序從鍵盤輸入年份和月份,計算出這一年的這一個月有多少天

#include<stdio.h>

int main()

{

int year,month,days,day;

printf("請輸入年月日");

scanf("%d-%d-%d",&year,&month,&days);

switch(month)

{

case 1:

case 3:

case 5:

case 7:

case 8:

case 10:

case 12: day=31;break;

case 4:

case 6:

case 9:

case 11:day=30;break;

case 2:

if(year%4==0&&year%100!=0||year%400==0)

day=29;

else

day=28;break;

default :printf("error ");

}

printf("這個月有%d天",day);

}

閱讀全文

與程序每一年每個月有多少天相關的資料

熱點內容
會計代理記賬什麼價格 瀏覽:552
經濟信息錄入有哪些 瀏覽:813
武漢乙烯產品發展前景如何 瀏覽:783
南京稅務代理如何製作 瀏覽:957
生化模式怎麼提高技術 瀏覽:722
四川集成牆面如何代理 瀏覽:128
釘釘怎麼製作小程序 瀏覽:453
消防車需要哪些技術 瀏覽:823
蘋果手機互發信息怎麼關閉 瀏覽:614
快遞驛站信息包含哪些信息 瀏覽:377
管件一般是怎麼交易的 瀏覽:357
什麼時候可以找律師代理 瀏覽:305
女人不回自己信息心裡怎麼想的 瀏覽:775
烽火通信產品是什麼意思 瀏覽:749
100萬代理什麼最賺錢 瀏覽:216
it技術從哪裡開始學 瀏覽:916
輪胎怎麼回訪代理 瀏覽:956
電子信息安全運營掙多少錢 瀏覽:570
松江閃送員怎麼領取信息卡 瀏覽:377
房本沒下來的房子如何交易 瀏覽:692