真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

java代碼系統(tǒng)接收天數(shù) java計算接口調用時間

java 獲取某月份的具體天數(shù)

樓上正解,不過樓主問出這個問題可能也是初學者,我就提供一下用簡單語法的代碼吧

余慶網站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網頁設計、網站建設、微信開發(fā)、APP開發(fā)、響應式網站開發(fā)等網站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)建站于2013年成立到現(xiàn)在10年的時間,我們擁有了豐富的建站經驗和運維經驗,來保證我們的工作的順利進行。專注于網站建設就選創(chuàng)新互聯(lián)建站

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();//得到需求月份

switch(month){

case 1:

case 3:

case 5:

case 7:

case 8:

case 10:

case 12:

System.out.println(year+"年"+month+"月的天數(shù)為:"+31);

break;

case 4:

case 6:

case 9:

case 11:

System.out.println(year+"年"+month+"月的天數(shù)為:"+30);

case 2:

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

System.out.println(year+"年2月的天數(shù)為:"+29);

}else{

System.out.println(year+"年2月的天數(shù)為:"+28);

}

}

}

如何寫Java程序來接受用戶輸入的一個1-12之間的整數(shù),用switch語句輸出對應月份的天數(shù)?

import java.util.Scanner;

public class QuestionOne {

private static boolean start;

public static void main(String[] args) {

boolean really=true;

Scanner sc=new Scanner(System.in);

while(really=true){

boolean temp=true;

int num=0;

start:

while(temp==true){

System.out.print("請輸入要查詢的月份:");

num=sc.nextInt();

if(num12 ||num1){

System.out.println("你輸入的月份錯誤,請重新輸入");

continue;

}

temp=false;

}

int dayOfMonth = 0;

switch (num) {

case 1:

dayOfMonth=31;

break;

case 2:

dayOfMonth=28;

break;

case 3:

dayOfMonth=31;

break;

case 4:

dayOfMonth=30;

break;

case 5:

dayOfMonth=31;

break;

case 6:

dayOfMonth=30;

break;

case 7:

dayOfMonth=31;

break;

case 8:

dayOfMonth=31;

break;

case 9:

dayOfMonth=30;

break;

case 10:

dayOfMonth=31;

break;

case 11:

dayOfMonth=30;

break;

case 12:

dayOfMonth=31;

break;

default:

break;

}

if(num==2){

System.out.println("'"+num+"'月對應的天數(shù)是:'"+dayOfMonth+"'或者29");

}

else{

System.out.println("'"+num+"'月對應的天數(shù)是:'"+dayOfMonth+"'");

}

System.out.println("C為繼續(xù),其余任意鍵退出!");

String t=sc.next();

if(t!="c"){

really=false;

}

}

}

}//(樓主如果需要判斷閏年的話給發(fā)個悄悄話,這是為2月準備的)

編寫一個Java程序,接受用戶輸入的一個1-12之間的整數(shù),利用switch語句輸出對應月份的天數(shù)

import java.util.Scanner;

class Switch{

public void contains(int temp){

switch(temp){

case 1:{

System.out.println(""+temp+"月為31天?。?!");

break;

}

case 2:{

System.out.println(""+temp+"月為28天?。?!");

break;

}

case 3:{

System.out.println(""+temp+"月為31天!?。?);

break;

}

case 4:{

System.out.println(""+temp+"月為30天?。。?);

break;

}

case 5:{

System.out.println(""+temp+"月為31天?。?!");

break;

}

case 6:{

System.out.println(""+temp+"月為30天?。?!");

break;

}

case 7:{

System.out.println(""+temp+"月為31天?。。?);

break;

}

case 8:{

System.out.println(""+temp+"月為31天?。?!");

break;

}

case 9:{

System.out.println(""+temp+"月為30天?。?!");

break;

}

case 10:{

System.out.println(""+temp+"月為31天!?。?);

break;

}

case 11:{

System.out.println(""+temp+"月為30天?。?!");

break;

}

case 12:{

System.out.println(""+temp+"月為31天?。?!");

break;

}

default:{

System.out.println("輸入的月份有誤!?。?);

break;

}

}

}

}

public class SwitchDemo{

public static void main(String args[]){

int temp=0;

Switch sw=new Switch();

System.out.print("請輸入月份:");

Scanner scan=new Scanner(System.in);

temp=scan.nextInt();

sw.contains(temp);

}

}

樓主,別忘了給分哦~~~

用java程序寫出 接收一個年份和一個月份,判斷得出該月的總天數(shù)。(用if語句完成)

import java.util.*;

public class Test {

public static void main(String[] args) {

Scanner input = new Scanner(System.in);

System.out.println("請輸入年份");

int year = input.nextInt();

System.out.println("請輸入月份");

int month = input.nextInt();

if(month==2){

if (((year % 100 == 0) (year % 400 == 0))

|| ((year % 100 != 0) (year % 4 == 0))) {

System.out.println(month+"月份天數(shù)是29天");

return;

}else {

System.out.println(month+"月份天數(shù)是28天");

return;

}

}else if(month%2==0 ) {

System.out.println(month+"月份是30天");

}else if(month%2!=0) {

System.out.println(month+"月份是31天");

}

}

}


網頁名稱:java代碼系統(tǒng)接收天數(shù) java計算接口調用時間
URL地址:http://weahome.cn/article/dogiehp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部