是用switch 语句编写一个JAVA应用程序,程序将根据系统时间来判断当前月份在哪一个季节, 15

输出当前月份和判断结果,要求:1)获取系统时间可用Calengdar类创建一个对象,语句包括Calendarc=Calendae.getInstance();其中,c为日... 输出当前月份和判断结果,
要求:1)获取系统时间可用Calengdar类创建一个对象,语句包括Calendar c=Calendae.getInstance();其中,c为日历对象,代表当前的时间系统时间
2)获取系统月份可用日历对象条用Calendar类的get()方法,方法返回0~11这12个数字,代表1~12月份,语句为int m=c.get(C挨了那打扰MONTH)+1
2)获取系统月份可用日历对象条用Calendar类的get()方法,方法返回0~11这12个数字,代表1~12月份,语句为int m=c.get(Calendar.MONTH)+1
展开
 我来答
jackson王子
2013-03-21 · TA获得超过354个赞
知道小有建树答主
回答量:156
采纳率:0%
帮助的人:128万
展开全部

package zhidao;

import java.util.Calendar;

public class Month {

public static void main(String[] args){

Calendar c=Calendar.getInstance();

 int month = c.get(Calendar.MONTH) + 1;

 if(month >= 1 && month <=3){

 System.out.println("现在是" + month + "月");

 System.out.println("现在是春天");

 }else if(month <= 6){

 System.out.println("现在是" + month + "月");

 System.out.println("现在是夏天");

 }else if(month <= 9){

 System.out.println("现在是" + month + "月");

 System.out.println("现在是秋天");

 }else if(month <= 12){

 System.out.println("现在是" + month + "月");

 System.out.println("现在是冬天");

 }else{

 System.out.println("系统时间错误");

 }

}

}

悲伤地今天
2013-03-21 · TA获得超过158个赞
知道小有建树答主
回答量:396
采纳率:22%
帮助的人:100万
展开全部
Calendar c=Calendae.getInstance();
int month = c.get(Calendar.MONTH) + 1;
switch(month)
{
case 2<month<5:
System.out.println("春天");
case 5<=month<8:
System.out.println("夏天");
case 8<=month<11:
System.out.println("秋天");
case 11<=month<1:
System.out.println("冬天");
default:语句;
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
爱上靓颖的夏天
2013-03-21 · TA获得超过1211个赞
知道小有建树答主
回答量:826
采纳率:100%
帮助的人:476万
展开全部
public class test1 {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Calendar c = Calendar.getInstance();
int m= c.get(Calendar.MONTH)+1;
switch (m) {
case 1:
case 2:
case 3:
System.out.println("现在是春天");
break;
case 4:
case 5:
case 6:
System.out.println("现在是夏天");
break;
case 7:
case 8:
case 9:
System.out.println("现在是秋天");
break;
case 10:
case 11:
case 12:
System.out.println("现在是冬天");
break;
default:
break;
}
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式