Click here to Skip to main content
15,886,664 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
On the planet Mongo, each year has 15 months and each month has 26 days.

Write a function compute_mongo_age(birthYear, birthMonth, birthDay, currentYear, currentMonth, currentDay) that residents of Mongo can use to compute their age. It should take 6 positive integers as input: the person's birthdate (year, month from 1 to 15, and day from 1 to 26) and the current date (year, month from 1 to 15, and day from 1 to 26), and return a float of the age of the person in years.

For example, print(compute_mongo_age(2879,8,11,2892,2,21)) should print 12.6256410256, the age (in Mongo years) on the 21st day of the 2nd month of the year 2892, of a person who was born on the 11th day of the 8th month of the year 2879.

What I have tried:

Not sure where to start with this question, anyone got an answer?
Posted
Updated 22-Jul-22 19:26pm
Comments
Richard MacCutchan 23-Jul-22 3:41am    
The question is one of simple mathematics. Calculate the number of days between the two dates. Then calculate the number of years, which is days divided by number of days in a year.

Quote:
Not sure where to start with this question, anyone got an answer?

Start by solving the problem by hand, how you solve is basically your algorithm.
If problems, show your work and explain how it go wrong, we help fixing your code.
 
Share this answer
 
While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for us to do it all for you.

So we need you to do the work, and we will help you when you get stuck. That doesn't mean we will give you a step by step solution you can hand in!
Start by explaining where you are at the moment, and what the next step in the process is. Then tell us what you have tried to get that next step working, and what happened when you did.

If you are having problems getting started at all, then this may help: How to Write Code to Solve a Problem, A Beginner's Guide[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900