-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfind_day_hr.java
46 lines (36 loc) · 1.09 KB
/
find_day_hr.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
import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.regex.*;
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) {
String[] D = {"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"};
int a = (14 - month)/12;
int Y= year - a;
int M= month + 12 * a -2;
int F=(int)((day + Y + (Y/4) - (Y/100) + (Y/400) + ((31 * M)/12)))%7;
return D[F].toUpperCase();
}
}
public class find_day_hr {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int month = sc.nextInt();
int day = sc.nextInt();
int year = sc.nextInt();
String result = Result.findDay(month,day,year);
System.out.println(result);
}
}