import java.util.*;
import java.lang.*;
import java.io.*;
// The main method must be in a class named "Main".
class Main {
public static void main(String[] args) {
for (int i = 0; i < 12; i++) {
for (int j = 0; j < 12; j++) {
for (int k = 1; k < 31; k++) {
System.out.print(j+1);
System.out.print("月");
System.out.print(k);
System.out.print("日");
System.out.print(((j*30)+k) % 7);
System.out.print("曜日");
System.out.print("干支:");
System.out.print(i);
System.out.println( );
}
}
}
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: