输出日历

Posted coder_PengWenHao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了输出日历相关的知识,希望对你有一定的参考价值。

                                                            输出日历

  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();  
  }
 
}

 

以上是关于输出日历的主要内容,如果未能解决你的问题,请参考以下文章

Android - 来自 Google 日历的事件输出列表

python 练习 输入年月 输出当年当月日历 求代码 重赏

java学习日历输出

输出日历和索引示例

python 输出指定年月份的日历!

2.2打印日历实现输出某年某月