-
Notifications
You must be signed in to change notification settings - Fork 0
/
DayFinder.java
47 lines (35 loc) · 1.14 KB
/
DayFinder.java
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import java.io.*;
import java.sql.Date;
import java.text.*;
import java.time.format.DateTimeFormatter;
import java.util.Calendar;
import java.util.Scanner;
class Result {
/*
* Complete the 'findDay' function below.
*
* The function is expected to return a STRING.
* The function accepts following parameters:
* 1. INTEGER month
* 2. INTEGER day
* 3. INTEGER year
*/
public static String findDay(int month, int day, int year) {
Calendar c = Calendar.getInstance();
c.set(year, month-1,day, 0, 0, 0);
Date d = new Date(c.getTimeInMillis());
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("MM dd yyyy");
String dayWeekText = new SimpleDateFormat("EEEE").format(d);
return dayWeekText.toUpperCase();
}
}
public class DayFinder {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
int month = sc.nextInt();
int day = sc.nextInt();
int year = sc.nextInt();
String res = Result.findDay(month, day, year);
System.out.println(res);
}
}