1.一月至十二月的英语单词怎么写,
一月份=JAN. Jan.=January 二月份=FEB. Feb.=February 三月份=MAR. Mar.=March 四月份=APR. Apr.=April 五月份=MAY May=May 六月份=JUN. Jun.=June 七月份=JUL. Jul.=July 八月份=AUG. Aug.=August 九月份=SEP. Sept.=September 十月份=OCT. Oct.=October 十一月份=NOV. Nov.=November 十二月份=DEC. Dec.=December。
2.1—12月重大的日子有哪些
已解决问题 收藏 求1月~12月所有节日的英文单词标签:英文 单词,节日,单词 匿名 回答:3 人气:6 解决时间:2008-09-27 20:35 检举 母亲节Mother's day (五月的第2个星期天) The second Sunday in May 情人节Valentine's Day (2月14) Valentine's Day is on Februay 14th every year. 圣诞节Christmas Day (12月25) December 25th is Christmas Day. 父亲节Father's Day (六月的第3个星期天) On the third Sunday in June . 愚人节April fool's day (四月1号) April fool's day is on April the 1st of everyear 复活节Easter (3月22到25号) Easter is from 22nd March to 25th April. 感恩节Thanksgiving Day(11月最后一个星期四) On every last Thursday of November is a special day. 万圣节HALLOWMAS (11月1号) On November 1st 元旦NEW YEAR'S DAY (1月1号) On January 1st 元宵节LANTERN FESTIVAL (农历1月15号) On January 15th in lunar calendar 端午节DRAGON BOAT FESTIVAL (农历5月初5) On May 5th in lunar calendar 中秋节MOON FESTIVAL (农历8月15) On August 15th in lunar calendar 春节SPRING FESTIVAL (CHINESE NEW YEAR) (农历1月1号) On January 1st in lunar calendar 新年除夕NEW YEAR'S EVE (农历12月31号) On December 31st in lunar calendar 国际儿童节INTERNATIONAL CHILDREN'S DAY On June 1st (5月1号) 国际劳动节INTERNATIONAL LABOUR DAY On May 1st (6月1号)。
3.用java编程实现 2016年12月份的日历怎么写
用Java实现的日历程序如下(图形界面程序) import java.awt.BorderLayout;import java.awt.Color;import java.awt.Font;import java.awt.GridLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.util.Calendar;import javax.swing.BorderFactory;import javax.swing.JButton;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.JPanel;public class CCI extends JFrame implements ActionListener{ JButton jb1=new JButton("<<"); JButton jb2=new JButton("<"); JButton jb3=new JButton(">"); JButton jb4=new JButton(">>"); JPanel jp1=new JPanel(); JPanel jp2=new JPanel(); JPanel jp3=new JPanel(); JPanel jp4=new JPanel(); JLabel jl1=new JLabel(); JLabel jl2=new JLabel(); JLabel[]jl=new JLabel[49]; String []week={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"}; Calendar c=Calendar.getInstance(); int year,month,day; int nowyear,nowmonth,nowday; CCI(){ super("简单日历"); nowyear=c.get(Calendar.YEAR); nowmonth=c.get(Calendar.MONTH)+1; nowday=c.get(Calendar.DAY_OF_MONTH); year=nowyear; month=nowmonth; day=nowday; String s=year+"年"+month+"月"; jl1.setForeground(Color.RED); jl1.setFont(new Font(null,Font.BOLD,20)); jl1.setText(s); jb1.addActionListener(this); jb2.addActionListener(this); jb3.addActionListener(this); jb4.addActionListener(this); jp1.add(jb1);jp1.add(jb2);jp1.add(jl1);jp1.add(jb3);jp1.add(jb4); jp2.setLayout(null); createMonthPanel(); jp2.add(jp3); jl2.setFont(new Font(null,Font.BOLD,20)); jl2.setText("今天是"+nowyear+"年"+nowmonth+"月"+nowday+"日"); jp4.add(jl2); add(jp1,BorderLayout.NORTH); add(jp2,BorderLayout.CENTER); add(jp4,BorderLayout.SOUTH); setSize(500,500); (JFrame.EXIT_ON_CLOSE); setLocationRelativeTo(null); setVisible(true); } @Override public void actionPerformed(ActionEvent ae) { if(ae.getSource()==jb1){ year=year-1; String s=year+"年"+month+"月"; jl1.setText(s); jp3.removeAll(); createMonthPanel(); jp3.validate(); } if(ae.getSource()==jb2){ if(month==1){ year=year-1; month=12; }else{ month=month-1; } String s=year+"年"+month+"月"; jl1.setText(s); jp3.removeAll(); createMonthPanel(); jp3.validate(); } if(ae.getSource()==jb3){ if(month==12){ year=year+1; month=1; }else{ month=month+1; } String s=year+"年"+month+"月"; jl1.setText(s); jp3.removeAll(); createMonthPanel(); jp3.validate(); } if(ae.getSource()==jb4){ year=year+1; String s=year+"年"+month+"月"; jl1.setText(s); jp3.removeAll(); createMonthPanel(); jp3.validate(); } } public static void main(String[] args) { new CCI(); } public int getMonthDays(int year, int month) { switch (month) { case 1: case 3: case 5: case 7: case 8: case 10: case 12: return 31; case 2: if ((year%4==0&&year%100!=0)||year%400==0) { return 29; } else { return 28; } default: return 30; } } public void createMonthPanel(){ c.set(year, month-1, getMonthDays(year,month)); int weekOfMonth=c.get(Calendar.WEEK_OF_MONTH); if(weekOfMonth==6){ jp3.setLayout(new GridLayout(7,7)); jp3.setBounds(50, 20, 420, 350); }else{ jp3.setLayout(new GridLayout(6,7)); jp3.setBounds(50, 20, 420, 300); } jp3.setBorder(BorderFactory.createEtchedBorder()); for(int i=0;i<7;i++){ jl[i]=new JLabel(week[i],JLabel.CENTER); jl[i].setFont(new Font(null,Font.BOLD,20)); jl[i].setBorder(BorderFactory.createEtchedBorder()); jp3.add(jl[i]); } c.set(year, month-1, 1); int emptyFirst=c.get(Calendar.DAY_OF_WEEK)-1; int daysOfMonth=getMonthDays(year,month); for(int i=6+emptyFirst;i>=7;i--){ int intyear=year; int intmonth=month; if(intmonth==1){ intyear=intyear-1; intmonth=12; }else{ intmonth=intmonth-1; } int intdays=getMonthDays(intyear,intmonth); jl[i]=new JLabel((intdays+7-i)+"",JLabel.CENTER); jl[i].setFont(new Font(null,Font.BOLD,20)); jl[i].setForeground(Color.GRAY); jl[i].setBorder(BorderFactory.createEtchedBorder()); jp3.add(jl[i]); } for(int i=7+emptyFirst;i 转载请注明出处育才学习网 » 1一12月的曰历表怎么写(一月至十二月的英语单词怎么写,)