我想为文本日历制作一个非常简单的程序。这是我第一次尝试打印方法,我不知道该怎么做。
public class Calendar{
public static void main(String[] args){
System.out.println("January: ");
System.out.println("S M T W TH F S");
}
public static void displayMonth(int i){
for (i = 1; i < 32; i++){
if (i < 10){
System.out.print(i + " ");
}else{
System.out.print(i + " ");
}
if (i % 7 == 0 ){
System.out.print("\n");
}
}
}
}
那就是代码。如何让“displayMonth 出现?