Skip to main content

Use Java to write a simple solar calendar


Photo by Ketut Subiyanto from Pexels 

The difficulty of printing a month’s calendar is to find out the number of weeks corresponding to the first day of the month. A good way to solve this problem is to find out that the first day of January of the year corresponds to Monday, so that the number of weeks on the first day of the month required = (the total number of days between the year and the year entered + the number of days lost The total number of days between January of the year and the month entered + 1)%7. Then the year I was looking for was 1900. 



import java.util.Scanner;



public class Calendar {

    public static void main(String[] args) {

        //Enter the year and month

        //Calculate the total number of days between 1900 and the year entered

        //Judging the average leap year

        Scanner scanner=new Scanner(System.in);

        System.out.println("Enter a year:");

        int year=scanner.nextInt();

        int yearTotalDays = 0;

        for(int i=1900;i<year;i++) {

            if (i % 4 == 0 && i % 100 != 0 || i % 400 == 0) {

                yearTotalDays += 366;

            } else {

                yearTotalDays += 365;

            }

        }

       //Calculate the total number of days from January of the year entered to the month entered

        System.out.println("Enter a month:");

        int month=scanner.nextInt();

        int monthTotalDays=0;

        int days=0;

        for(int m=1;m<=month;m++){      //The equal sign of m here is not used when calculating, but to avoid reconsidering how many days there are in the month when printing the input month below

            //Determine the number of days in each month (big month, small month, February (also judge whether it is a normal year or a leap year)))

            switch(m){

                case 2:

                    //Determine whether the lost year is a leap year

                    if(year%4 == 0 && year%100 != 0 || year%400 == 0){

                        days = 29;

                    }else{

                        days = 28;

                    }

                    break;

                //Small Moon

                case 4:

                case 6:

                case 9:

                case 11:

                    days=30;

                    break;

                //Big moon

                default:

                  days=31;

            }

            //Accumulate the total number of days in each month

            if(m<month){

                monthTotalDays+=days;

            }

        }

        //Calculate the week number of the first day of the entered month

            int week=(yearTotalDays+monthTotalDays+1)%7;

        //Because the value of Sunday is 0, in order to control the position of the first print, it is necessary to set Sunday to 7

        if(week==0){

           week=7;

        }

        System.out.println("一\t二\t三\t四\t五\t六\t七");

        //Control the spacing of printing

        for(int b=1;b<week;b++){

            System.out.print("\t");

        }

        //Print every day of the month

        for(int d=1;d<=days;d++) {

            System.out.print(d+"\t");

            //Judge whether every day is Sunday

            if ((yearTotalDays + monthTotalDays + d) % 7 == 0) {

                //Wrap

                System.out.println();

            }

        }

    }


}



Comments

Popular posts from this blog

40 Redis interview questions for 2021 - 2022

  Redis interview questions 1.What is Redis?. 2. What is the data type of Redis? 3. What are the benefits of using Redis? 4. What are the advantages of Redis over Memcached? 5. What are the differences between Memcache and Redis? 6. Is Redis single-process and single-threaded? 7. What is the maximum storage capacity of a string type value? 8. What is the persistence mechanism of Redis? Their advantages and disadvantages? 9. Redis common performance problems and solutions: 10. What is the deletion strategy of redis expired keys? 11. Redis recycling strategy (elimination strategy)? 12. Why does edis need to put all data in memory? 13. Do you understand the synchronization mechanism of Redis? 14. What are the benefits of Pipeline? Why use pipeline? 15. Have you used Redis cluster? What is the principle of cluster? 16. Under what circumstances will the Redis cluster solution cause the entire cluster to be unavailable? 17. What are the Java clients supp...

Recursion-maze problem - Rat in the Maze - Game

  package com.bei.Demo01_recursion; public class MiGong {     public static void main(String[] args)  {         //First create a two-dimensional array to simulate the maze         int [][]map=new int[8][7];         //Use 1 for wall         for (int i = 0; i <7 ; i++) {             map[0][i]=1;             map[7][i]=1;         }         for (int i = 0; i <8 ; i++) {             map[i][0]=1;             map[i][6]=1;         }         //Set the bezel         map[3][1]=1;         map[3][2]=1;         //Output         for (int i = 0; i <8 ; i++) {             for (int j = 0; j ...

165 + Big Data and Artificial intelligence ( AI ) terms and terminology Glossary

  Latest and most comprehensive big data/artificial intelligence terms & terminology in English (highly recommended for collection) for years 2021 and 2022   A  1.  Apache Kafka:  named after the Czech writer Kafka, used to build real-time data pipelines and streaming media applications. The reason it is so popular is that it can store, manage, and process data streams in a fault-tolerant manner, and it is said to be very "fast". Given that the social network environment involves a lot of data stream processing, Kafka is currently very popular.