我是靠谱客的博主 酷炫鞋垫,这篇文章主要介绍日历系统——控制台输入年份和月份,打印该月的日历,现在分享给大家,希望可以做个参考。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package yueli; import java.util.*; public class ShuRu { static Scanner sc=new Scanner(System.in); static int year; static int month; public static void main(String[] args){ System.out.println("请输入年份:"); String ye=sc.next(); while(true){ if(ye.matches("\d{4}")){ year=Integer.parseInt(ye); break; }else{ System.out.println("年份输入错误,请重新输入"); } } System.out.println("请输入月份:"); String mon=sc.next(); while(true){ if(mon.matches("[1-9]|0[1-9]|1[012]")){ month=Integer.parseInt(mon); break; }else{ System.out.println("月份输入错误,请重新输入"); } } Calendar cal=Calendar.getInstance(); cal.set(year, month-1, 1); int day=cal.getActualMaximum(Calendar.DATE); int index=cal.get(Calendar.DAY_OF_WEEK); //判断该月第一天是星期几,输出几个空格 System.out.println("日"+"t"+"一"+"t"+"二"+"t"+"三"+"t"+"四"+"t"+"五"+"t"+"六"+"t"); for(int i=0;i<index-1;i++){ System.out.print(" "+"t"); } for(int i=1;i<=day;i++){ //输出该月每天,输出七个换行 System.out.print(i+"t"); if((index-1+i)%7==0){ System.out.println(""); } } } }

最后

以上就是酷炫鞋垫最近收集整理的关于日历系统——控制台输入年份和月份,打印该月的日历的全部内容,更多相关日历系统——控制台输入年份和月份,打印该月内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(80)

评论列表共有 0 条评论

立即
投稿
返回
顶部