-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathep1_4.java
More file actions
29 lines (26 loc) · 1008 Bytes
/
ep1_4.java
File metadata and controls
29 lines (26 loc) · 1008 Bytes
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
import java.time.*;
public class ep1_4 {
public static void main(String args[]){
LocalDate date = LocalDate.now();
int month = date.getMonthValue();
int today = date.getDayOfMonth();
date = date.minusDays(today-1); //Set to start of month
DayOfWeek weekDay = date.getDayOfWeek();
int value = weekDay.getValue();
System.out.println("Mon Tue Wed Thu Fri Sat Sun");
for(int i = 1; i < value; i ++){
System.out.print(" ");
}
while (date.getMonthValue() == month) {
System.out.printf("%3d",date.getDayOfMonth());
if(date.getDayOfMonth() == today){
System.out.print("*");
}else{
System.out.print(" ");
}
date = date.plusDays(1);
if(date.getDayOfWeek().getValue() == 1) System.out.println();
}
if(date.getDayOfWeek().getValue() == 1) System.out.println();
}
}