Easter Sunday in C ++

Is there any library that will help me get Easter Sunday date for a given year in C ++? I am looking for something like easter_date or easter_days in PHP. It can only be Linux.

+4
source share
3 answers

Here is a sample code

+1
source

Most PHP functions are actually implemented in C.

If you have an SVN client, you can get the source code for the easter_date and easter_days PHP functions:

https://svn.php.net/repository/php/php-src/trunk/ext/calendar/easter.c

I have no idea what the ethics of using this is to create your own function.

0
source

http://www.dateofeaster.com/ has an algorithm. This is similar to a PHP implementation.

0
source

Source: https://habr.com/ru/post/1390242/


All Articles