year

Calendar Application Using HTML, CSS and JavaScript with Source Code

Submitted by rems on
Welcome to the Calendar Application project, a delightful blend of HTML, CSS, and JavaScript to create a sleek and functional calendar experience. This web-based application provides users with an intuitive interface to navigate seamlessly through different months, offering a visual representation of dates in a clear and stylish layout. The project showcases the power of front-end technologies

PHP easter_days()

Submitted by alpha_luna on

PHP easter_days()

easter_days() function returns the number of days after March 21, on which Easter falls for a specified year.
Syntax of this function:
easter_days(year,method) year - defines the year to calculate the midnight on Easter from. If the year parameter is omitted, the current year is used. (optional) method - allows you to calculate Easter dates based on other calendars. E.g. it uses the Gregorian calendar during the years 1582 - 1752 when set to CAL_EASTER_ROMAN.

Validate Leap Year in C# Console

Submitted by donbermoy on
Today in C#, i will teach you how to validate a year as leap year or not. Hence we already know that leap year has 366 days instead of the normal 365 days. Leap years occur every 4 years. And this fact is our formula in finding a leap year using the console application in C#. Now, let's start this tutorial! 1. Let's start with creating a Console Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Console Application. 2.

Get day, day of week, day of month, day of year, month, and year values from the current date using Java

Submitted by donbermoy on
In this tutorial, we will create a program that gets day, day of week, day of month, day of year, month, and year values from the current date using Java. I have already discussed how to get the date and time, but here in this program, we will breakdown and get the complete information on the current date. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of subString.java. 2.

Validate Leap Year in VB.NET Console

Submitted by donbermoy on
In this tutorial, i will teach you how to validate a year as leap year or not. Hence we already know that leap year has 366 days instead of the normal 365 days. Leap years occur every 4 years. And this fact is our formula in finding a leap year using the console application in vb.net. Now, let's start this tutorial! 1. Let's start with creating a Console Application for this tutorial by following