java编写程序求出月份对应的季度名称?
这个是我随便写的,其中没有对输入月份进行限制!
成都地区优秀IDC服务器托管提供商(成都创新互联公司).为客户提供专业的成都服务器托管,四川各地服务器托管,成都服务器托管、多线服务器托管.托管咨询专线:18982081108
import java.util.*;
public class yuefen {
public static void main(String [] args)
{
String str="这个月份是";
Scanner s= new Scanner(System.in);
int temp=s.nextInt();
switch(temp)
{
case 1:
case 2:
case 3:
str+="spring";
break ;
case 4:
case 5:
case 6:
str+="autumn";
break ;
case 7:
case 8:
case 9:
str+="summer";
break ;
case 10:
case 11:
case 12:
str+="winter";
break ;
}
System.out.println(str);
}
}
Java如何 根据指定的时间段获取时间段内的所有年、季度、月、周。
你的意思是给一个时间跨度好比
2010/3/2-2015/05/06
然后输出 2010 2011 2012 2013 2014 2015 其他类似,是这个意思吗?
String format=new Format("yyyy"),format(new Data());
这样可以获得数字类型的年
Integer int =Integer.parsreInteger(format);
这样可以获得整形的年
之后就是进行循环读取即可。
java代码实现根据传入的日期,返回传入日期的所在季度(传入:2014/2/1,返回2014年1季度)
// 获得月份month
String month = "09";
// 设置季度
String jd = null;
if(Integer.parseInt(month) %3 == 0){
jd = Integer.parseInt(month)/3 + "";
} else {
jd = Integer.parseInt(month)/3 + 1 + "";
}
// 设置完成
用java怎么计算两个日期之间年数,季度数,月数
这些是确定的数值? 不考虑闰年什么的?
java.util.Date有方法, getTime(),得到毫秒差,,,,,那两个时间的毫秒差的结果,再换算成相应的年或季或月
~~~~~~~
java 某段时间内遍历出啊所有的年度 季度 月度 日 以及日期
这样可以吗 ,输入年份和月份后就会显示那年那月的第一天到最后一天是星期几
import java.util.Scanner;
public class Calendar{
public static void main(String[] args){
Scanner x=new Scanner(System.in);
System.out.println("请输入年:");
int nian=x.nextInt();
System.out.println("请输入月:");
int yue=x.nextInt();
int zong=0;
for(int year=0001;year=nian-1;year++){
if(year%4==0year%100!=0||year%400==0){
zong+=366;
}
else{
zong+=365;
}
}
for(int month=1;month=yue-1;month++){
if(month==2){
if(nian%4==0nian%100!=0||nian%400==0){
zong+=29;
}
else{
zong+=28;
}
}
else if(month==4||month==6||month==9||month==11){
zong+=30;
}
else{
zong+=31;
}
}
zong+=1;
System.out.println("日\t一\t二\t三\t四\t五\t六");
for(int i=1;i=zong%7;i++){
System.out.print("\t");
}
if(yue==2){
if(nian%4==0nian%100!=0||nian%400==0){
for(int i=1;i=29;i++){
if(zong%7==6){
System.out.print(i+"\n");
}
else{
System.out.print(i+"\t");
}
zong++;
}
}
else{
for(int i=1;i=28;i++){
if(zong%7==6){
System.out.print(i+"\n");
}
else{System.out.print(i+"\t");
}
zong++;
}
}
}
else if(yue==4||yue==6||yue==9||yue==11){
for(int i=1;i=30;i++){
if(zong%7==6){
System.out.print(i+"\n");
}
else{System.out.print(i+"\t");
}
zong++;
}
}
else{
for(int i=1;i=31;i++){
if(zong%7==6){
System.out.print(i+"\n");
}
else{System.out.print(i+"\t");
}
zong++;
}
}
}
}
java随机生成一个1到12的数(月份),判断该月份是不是第一季度
这个真的很入门了, 0-3就是第一季度, 直接判断就好了, 不需要计算了
本文名称:Java季度统计代码 Java数据统计
网站网址:http://scgulin.cn/article/hjpicg.html