java实现年份判断生肖(根据年份判断生肖)
本篇文章给大家谈谈java实现年份判断生肖,以及根据年份判断生肖对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。
本文目录一览:
- 1、Java生肖查询
- 2、从1991年至今用十二个生肖分别用java表示出来
- 3、如何用java在日期计算机中添加代码使它可以计算出属相?急!!!急!!!
- 4、编写代码输入年份.计算出该年是12生肖中的哪一年,谁帮忙用java 语言编写一下,感激不尽
- 5、编写程序,输入一个年份,判断该年属相.(提示switch-case)
Java生肖查询
import java.awt.Color;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.io.Serializable;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
public class Year extends JFrame implements Serializable{
private static final long serialVersionUID=21L;
private JTextField jt;
private JButton jb;
private JLabel ab1,ab2;
private JPanel jp1;
Year(){
this.setTitle("生肖查询小工具");
this.setBounds(400,300,300,200);
this.setLayout(new GridLayout(3,1));
init();
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setVisible(true);
}
private void init() {
jp1=new JPanel();
jt=new JTextField(10);
jb=new JButton("查询:");
ab1=new JLabel();
ab2=new JLabel("输入:");
ab1.setSize(50, 20);
ab1.setOpaque(true);
ab1.setForeground(Color.RED);
ab1.setBackground(Color.ORANGE);
ab1.setHorizontalAlignment(0);
ab1.setVerticalAlignment(0);
event();
jp1.add(ab2);
jp1.add(jt);
this.add(jp1);
this.add(ab1);
this.add(jb);
}
private void event() {
jt.addKeyListener(new KeyAdapter() {
@Override
public void keyTyped(KeyEvent e) {
if(e.getKeyChar()48||e.getKeyChar()57) {
e.consume();
}
}
});
jb.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String str=jt.getText();
String src=getYear(Integer.parseInt(str));
ab1.setText(str+"\t:"+src);
jt.setText(null);
jt.requestFocus();
}
});
}
public static void main(String[] args) {
new Year();
}
public String getYear(int year) {
if (year 1900) {
return "未知";
}
int start = 1900;
String[] years = new String[] { "鼠", "牛", "虎", "兔", "龙", "蛇", "马", "羊", "猴", "鸡", "狗", "猪" };
return years[(year - start) % years.length];
}
}
从1991年至今用十二个生肖分别用java表示出来
记住一个开始的生肖和一个年份对应,然后每12一个轮回
1991-羊 --- n=7
1992-猴 --- n=8
1993-鸡 --- n=9
1994-狗 --- n=10
1995-猪 --- n=11
1996-鼠 --- n=0
1997-牛 --- n=1
1998-虎 --- n=2
1999-兔 --- n=3
2000-龙 --- n=4
2001-蛇 --- n=5
2002-马 --- n=6
2003-羊 --- n=7
2004-猴 --- n=8
2005-鸡 --- n=9
2006-狗 --- n=10
2007-猪 --- n=11
2008-鼠 --- n=0
2009-牛 --- n=1
2010-虎 --- n=2
2011-兔 --- n=3
2012-龙 --- n=4
2013-蛇 --- n=5
2014-马 --- n=6
2015-羊 --- n=7
2016-猴 --- n=8
如何用java在日期计算机中添加代码使它可以计算出属相?急!!!急!!!
pre /**
* java根据阳历计算阴历,属相,星期
*/
pre public class Lunar {
private int year;
private int month;
private int day;
private boolean leap;
final static String chineseNumber[] = { "正", "二", "三", "四", "五", "六", "七",
"八", "九", "十", "十一", "腊" };
final static String chineseNumber1[] = { "一", "二", "三", "四", "五", "六", "七",
"八", "九", "十", "十一", "十二" };
static SimpleDateFormat chineseDateFormat = new SimpleDateFormat("yyyy-MM-dd");
final static long[] lunarInfo = new long[] { 0x04bd8, 0x04ae0, 0x0a570,
0x054d5, 0x0d260, 0x0d950, 0x16554, 0x056a0, 0x09ad0, 0x055d2,
0x04ae0, 0x0a5b6, 0x0a4d0, 0x0d250, 0x1d255, 0x0b540, 0x0d6a0,
0x0ada2, 0x095b0, 0x14977, 0x04970, 0x0a4b0, 0x0b4b5, 0x06a50,
0x06d40, 0x1ab54, 0x02b60, 0x09570, 0x052f2, 0x04970, 0x06566,
0x0d4a0, 0x0ea50, 0x06e95, 0x05ad0, 0x02b60, 0x186e3, 0x092e0,
0x1c8d7, 0x0c950, 0x0d4a0, 0x1d8a6, 0x0b550, 0x056a0, 0x1a5b4,
0x025d0, 0x092d0, 0x0d2b2, 0x0a950, 0x0b557, 0x06ca0, 0x0b550,
0x15355, 0x04da0, 0x0a5d0, 0x14573, 0x052d0, 0x0a9a8, 0x0e950,
0x06aa0, 0x0aea6, 0x0ab50, 0x04b60, 0x0aae4, 0x0a570, 0x05260,
0x0f263, 0x0d950, 0x05b57, 0x056a0, 0x096d0, 0x04dd5, 0x04ad0,
0x0a4d0, 0x0d4d4, 0x0d250, 0x0d558, 0x0b540, 0x0b5a0, 0x195a6,
0x095b0, 0x049b0, 0x0a974, 0x0a4b0, 0x0b27a, 0x06a50, 0x06d40,
0x0af46, 0x0ab60, 0x09570, 0x04af5, 0x04970, 0x064b0, 0x074a3,
0x0ea50, 0x06b58, 0x055c0, 0x0ab60, 0x096d5, 0x092e0, 0x0c960,
0x0d954, 0x0d4a0, 0x0da50, 0x07552, 0x056a0, 0x0abb7, 0x025d0,
0x092d0, 0x0cab5, 0x0a950, 0x0b4a0, 0x0baa4, 0x0ad50, 0x055d9,
0x04ba0, 0x0a5b0, 0x15176, 0x052b0, 0x0a930, 0x07954, 0x06aa0,
0x0ad50, 0x05b52, 0x04b60, 0x0a6e6, 0x0a4e0, 0x0d260, 0x0ea65,
0x0d530, 0x05aa0, 0x076a3, 0x096d0, 0x04bd7, 0x04ad0, 0x0a4d0,
0x1d0b6, 0x0d250, 0x0d520, 0x0dd45, 0x0b5a0, 0x056d0, 0x055b2,
0x049b0, 0x0a577, 0x0a4b0, 0x0aa50, 0x1b255, 0x06d20, 0x0ada0 };
// ====== 传回农历 y年的总天数
final private static int yearDays(int y) {
int i, sum = 348;
for (i = 0x8000; i 0x8; i = 1) {
if ((lunarInfo[y - 1900] i) != 0)
sum += 1;
}
return (sum + leapDays(y));
}
// ====== 传回农历 y年闰月的天数
final private static int leapDays(int y) {
if (leapMonth(y) != 0) {
if ((lunarInfo[y - 1900] 0x10000) != 0)
return 30;
else
return 29;
} else
return 0;
}
// ====== 传回农历 y年闰哪个月 1-12 , 没闰传回 0
final private static int leapMonth(int y) {
return (int) (lunarInfo[y - 1900] 0xf);
}
// ====== 传回农历 y年m月的总天数
final private static int monthDays(int y, int m) {
if ((lunarInfo[y - 1900] (0x10000 m)) == 0)
return 29;
else
return 30;
}
// ====== 传回农历 y年的生肖
final public String animalsYear() {
final String[] Animals = new String[] { "鼠", "牛", "虎", "兔", "龙", "蛇",
"马", "羊", "猴", "鸡", "狗", "猪" };
return Animals[(year - 4) % 12];
}
// ====== 传入 月日的offset 传回干支, 0=甲子
final private static String cyclicalm(int num) {
final String[] Gan = new String[] { "甲", "乙", "丙", "丁", "戊", "己", "庚",
"辛", "壬", "癸" };
final String[] Zhi = new String[] { "子", "丑", "寅", "卯", "辰", "巳", "午",
"未", "申", "酉", "戌", "亥" };
return (Gan[num % 10] + Zhi[num % 12]);
}
// ====== 传入 offset 传回干支, 0=甲子
final public String cyclical() {
int num = year - 1900 + 36;
return (cyclicalm(num));
}
public Lunar(Calendar cal) {
int yearCyl, monCyl, dayCyl;
int leapMonth = 0;
Date baseDate = null;
try {
baseDate = chineseDateFormat.parse("1900-1-31");
} catch (ParseException e) {
e.printStackTrace(); // To change body of catch statement use
// Options | File Templates.
}
// 求出和1900年1月31日相差的天数
int offset = (int) ((cal.getTime().getTime() - baseDate.getTime()) / 86400000L);
dayCyl = offset + 40;
monCyl = 14;
// 用offset减去每农历年的天数
// 计算当天是农历第几天
// i最终结果是农历的年份
// offset是当年的第几天
int iYear, daysOfYear = 0;
for (iYear = 1900; iYear 2050 offset 0; iYear++) {
daysOfYear = yearDays(iYear);
offset -= daysOfYear;
monCyl += 12;
}
if (offset 0) {
offset += daysOfYear;
iYear--;
monCyl -= 12;
}
// 农历年份
year = iYear;
yearCyl = iYear - 1864;
leapMonth = leapMonth(iYear); // 闰哪个月,1-12
leap = false;
// 用当年的天数offset,逐个减去每月(农历)的天数,求出当天是本月的第几天
int iMonth, daysOfMonth = 0;
for (iMonth = 1; iMonth 13 offset 0; iMonth++) {
// 闰月
if (leapMonth 0 iMonth == (leapMonth + 1) !leap) {
--iMonth;
leap = true;
daysOfMonth = leapDays(year);
} else
daysOfMonth = monthDays(year, iMonth);
offset -= daysOfMonth;
// 解除闰月
if (leap iMonth == (leapMonth + 1))
leap = false;
if (!leap)
monCyl++;
}
// offset为0时,并且刚才计算的月份是闰月,要校正
if (offset == 0 leapMonth 0 iMonth == leapMonth + 1) {
if (leap) {
leap = false;
} else {
leap = true;
--iMonth;
--monCyl;
}
}
// offset小于0时,也要校正
if (offset 0) {
offset += daysOfMonth;
--iMonth;
--monCyl;
}
month = iMonth;
day = offset + 1;
}
public static String getChinaDayString(int day) {
String chineseTen[] = { "初", "十", "廿", "卅" };
int n = day % 10 == 0 ? 9 : day % 10 - 1;
if (day 30)
return "";
if (day == 10)
return "初十";
else
return chineseTen[day / 10] + chineseNumber1[n];
}
public String toString() {
return (leap ? "闰" : "") + chineseNumber[month - 1] + "月"
+ getChinaDayString(day);
}
public String getChinaWeekdayString(String weekday) {
if (weekday.equals("Mon"))
return "一";
if (weekday.equals("Tue"))
return "二";
if (weekday.equals("Wed"))
return "三";
if (weekday.equals("Thu"))
return "四";
if (weekday.equals("Fri"))
return "五";
if (weekday.equals("Sat"))
return "六";
if (weekday.equals("Sun"))
return "日";
else
return "";
}
public static void main(String[] args) throws ParseException {
Calendar today = Calendar.getInstance();
//today.setTime(new java.util.Date());// 加载当前日期
today.setTime(chineseDateFormat.parse("2015-04-02"));//加载自定义日期
Lunar lunar = new Lunar(today);
System.out.print(lunar.cyclical() + "年");// 计算输出阴历年份
System.out.println(lunar.toString());// 计算输出阴历日期
System.out.println(lunar.animalsYear());// 计算输出属相
System.out.println(new java.sql.Date(today.getTime().getTime()));// 输出阳历日期
System.out.println("星期"
+ lunar.getChinaWeekdayString(today.getTime().toString()
.substring(0, 3)));// 计算输出星期几
/**
* 输出结果:
* 乙未年二月十四
* 羊
* 2015-04-02
* 星期四
*/
}
}
编写代码输入年份.计算出该年是12生肖中的哪一年,谁帮忙用java 语言编写一下,感激不尽
自己写拉
例如
先使用bufferedreader inputstreamreader system.in读取键盘
然后string str = bufferedreader.readline();
int index = Integer.parseInt(str);
if*(index =1 | index = 4)
是什么什么 生肖!!! 等等
编写程序,输入一个年份,判断该年属相.(提示switch-case)
#include stdio.h
int main(){
char p[12][4]={"鼠","牛","虎","兔","龙","蛇","马","羊","鸡","猴","狗","猪"};
int year0=2008; //2008年是鼠年,作为基准
int year,n;
printf("请输入一个年份\n");
scanf("%d",year);
n=year-year0;
n=n%12;
if (n0) n+=12; //求余时,n可能是负数,如果是负数则加12
printf("%d年属%s\n",year,p[n]);
}
java实现年份判断生肖的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于根据年份判断生肖、java实现年份判断生肖的信息别忘了在本站进行查找喔。
与本文内容相关的文章: