S
S
Sergey Sergey2021-04-18 12:16:03
Java
Sergey Sergey, 2021-04-18 12:16:03

How to add the days of the week to the code below?

public class Month {
    public static void main(String[] args) {
        double JANUARY;
        System.out.println("\t\t\tЯнварь");
        System.out.println("");
            for (int i = 1; i < 8; i++) {
            System.out.print(i + "\t");
        }    
        System.out.println();
        for (int i = 8; i < 15; i++) {
            System.out.print(i +  "\t");
        }
        System.out.println();
        for (int i = 15; i < 22; i++) {
            System.out.print(i + "\t");
        }
        System.out.println();
       for (int i = 22; i < 29; i++) {
           System.out.print(i + "\t");
       } 
       System.out.println();
       for (int i = 29; i < 32; i++) {
           System.out.print(i + "\t");           
       }
}
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dmitry Roo, 2021-04-18
@Sergei1111

System.out.println("Пн Вт Ср Чт Пт Сб Вс");

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question