Using the following
Let X be the year
Let A be the reminder of the division of X by 19
Let B be the reminder of the division of X by 4
Let C be the reminder of division of X by 7
Let D be the reminder of the division of(19A+24) by 30
Let E be the reminder of the division of(2B +4C+6D+5) by 7
The date for easter is march(22 +D+E). Write a program that will accept the year input and print out the date of easter for that year
Please help me !!

This is your first post. This looks like an assignment but read this first before you reply.
https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question

If you are a programmer in a hurry I guess you could google the answer like http://stackoverflow.com/questions/2510383/how-can-i-calculate-what-date-good-friday-falls-on-given-a-year but how would that help you learn to program?

This all boils down to writing some statements.
Example: Let A be the reminder of the division of X by 19
Becomes in C# code: A = X % 19;
Try out the rest and see what you can come up with. Succes!

O, and one of my snippets on this site can help too, but as rproffitt already pointed out,
if you want to learn to program, do it yourself!
Books, Google or soething else can only guide you.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.