How to check whether given date occurred on Friday 13th in Java?
Problem Description :
Write a program in Java that checks whether given date occurred on Friday 13th or not?
Concept :
In this problem we need to check day name and day number (in month) of given date. Day name should be Friday and day number should be 13. The solution is very simple and straightforward. With the help of DAY_OF_WEEK and DAY_OF_MONTH constants of Calendar class that is present in java.util.* package we can easily solve this problem.
Recommended :
Java Program :
Output :
Case 1 :
Output - Given date not occurred on Friday the 13th |
Case 2 :
Output - Given date occurred on Friday the 13th |
Similar Problems :
1) How to check whether given date occurred on Sunday Xth in Java?
- Replace line 35 with if (calendar.get(Calendar.DAY_OF_WEEK) == 1 && calendar.get(Calendar.DAY_OF_MONTH) == X) {
2) How to check whether given date occurred on Monday Xth in Java?
- Replace line 35 with if (calendar.get(Calendar.DAY_OF_WEEK) == 2 && calendar.get(Calendar.DAY_OF_MONTH) == X) {
3) How to check whether given date occurred on Tuesday Xth in Java?
- Replace line 35 with if (calendar.get(Calendar.DAY_OF_WEEK) == 3 && calendar.get(Calendar.DAY_OF_MONTH) == X) {
4) How to check whether given date occurred on Wednesday Xth in Java?
- Replace line 35 with if (calendar.get(Calendar.DAY_OF_WEEK) == 4 && calendar.get(Calendar.DAY_OF_MONTH) == X) {
5) How to check whether given date occurred on Thursday Xth in Java?
- Replace line 35 with if (calendar.get(Calendar.DAY_OF_WEEK) == 5 && calendar.get(Calendar.DAY_OF_MONTH) == X) {
6) How to check whether given date occurred on Saturday Xth in Java?
- Replace line 35 with if (calendar.get(Calendar.DAY_OF_WEEK) == 7 && calendar.get(Calendar.DAY_OF_MONTH) == X) {
References :
Thank you friends, I hope you have clearly understood the solution of this problem. If you have any doubt, suggestion or query please feel free to comment below. You can also discuss this solution in our forum.
Tags : Date and Time Problems, DateFormat, SimpleDateFormat, String, Calendar, if else statement.
How to check whether given date occurred on Friday 13th in Java?
Reviewed by Rohit Agarwal
on
3/02/2017
Rating:
No comments:
Please provide your valuable comments. If you have any suggestion please share with me I will work on it and if you have any question or doubt please ask, don't hesitate. I am your friend, i will clarify all your doubts.