博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
输出日历
阅读量:5039 次
发布时间:2019-06-12

本文共 1117 字,大约阅读时间需要 3 分钟。

                                                            输出日历

  Calendar 2006-12

--------------------------
Su  Mo  Tu  We  Th  Fr  Sa
--------------------------
                     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
--------------------------

 code:

  import java.util.*;

public class Main {
    public static void fun()
    {
        System.out.print("Calendar 2006-12"+"\n");
        System.out.print("--------------------------"+"\n");
        System.out.print("Su  Mo  Tu  We  Th  Fr  Sa"+"\n");
        System.out.print("--------------------------"+"\n");
        int temp = 0;
        for(int i=1;i<=31;i++)
        {
             if(i<2)
             {
                System.out.print("                     ");
                System.out.print(i+"   "+(i+1)+"\n");
             }
             if(i>2&&i<10)
             {
                 System.out.print(" "+i+"  ");
                 if(i==9)
                 {
                     System.out.print("\n");
                 }
             }
              
              if(i>=10&&i<17)
              {
                  System.out.print(i+"  ");
                  if(i==16)
                  {
                      System.out.print("\n");
                  }
              }
              
              if(i>=17&&i<24)
              {
                  System.out.print(i+"  ");
                  if(i==23)
                  {
                      System.out.print("\n");
                  }
              }
              
              if(i>=24&&i<31)
              {
                  System.out.print(i+"  ");
                  if(i==30)
                  {
                      System.out.print("\n");
                  }
              }
              
               if(i==31)
               {
                   System.out.print(i);
               }
              
                
        }
        System.out.print("\n"+"--------------------------"+"\n");
        
        
        
    }
  public static void main(String[] args)
  {
    fun();  
  }
 
}

 

转载于:https://www.cnblogs.com/pwhit/p/5263931.html

你可能感兴趣的文章
web.xml中listener、 filter、servlet 加载顺序及其详解
查看>>
前端chrome浏览器调试总结
查看>>
获取手机验证码修改
查看>>
数据库连接
查看>>
python中数据的变量和字符串的常用使用方法
查看>>
等价类划分进阶篇
查看>>
delphi.指针.PChar
查看>>
Objective - C基础: 第四天 - 10.SEL类型的基本认识
查看>>
java 字符串转json,json转对象等等...
查看>>
极客前端部分题目收集【索引】
查看>>
第四天 selenium的安装及使用
查看>>
关于js的设计模式(简单工厂模式,构造函数模式,原型模式,混合模式,动态模式)...
查看>>
KMPnext数组循环节理解 HDU1358
查看>>
android调试debug快捷键
查看>>
【读书笔记】《HTTP权威指南》:Web Hosting
查看>>
Inoodb 存储引擎
查看>>
数据结构之查找算法总结笔记
查看>>
Linux内核OOM机制的详细分析
查看>>
Android TextView加上阴影效果
查看>>
Requests库的基本使用
查看>>