docs(dog-years): correct grammar

This commit is contained in:
davhojt 2022-05-01 14:51:16 +01:00
parent 1e68b12c89
commit 3f4a55f605
No known key found for this signature in database
GPG Key ID: C8C3C515E7AF0D2D
1 changed files with 11 additions and 12 deletions

View File

@ -2,20 +2,19 @@
### Instructions ### Instructions
Someone once said that a dog makes 7 years for each human year. Someone once said that a human year is equal to 7 dog years.
Create a `dogYears` function that if given a planet name and an age in seconds, Create a function named `dogYears`, that accepts the name of a planet, and the age of the dog in seconds. Your function should return the age of the dog on that planet in dog years.
calculates how old a dog would be on the given planet.
- `earth` : orbital period 1.0 Earth years, 365.25 Earth days, or 31,557,600 seconds - `earth`: orbital period 1.0 Earth years, 365.25 Earth days, or 31,557,600 seconds.
- `mercury` : orbital period 0.2408467 Earth years - `mercury`: orbital period 0.2408467 Earth years.
- `venus` : orbital period 0.61519726 Earth years - `venus`: orbital period 0.61519726 Earth years.
- `mars` : orbital period 1.8808158 Earth years - `mars`: orbital period 1.8808158 Earth years.
- `jupiter` : orbital period 11.862615 Earth years - `jupiter`: orbital period 11.862615 Earth years.
- `saturn` : orbital period 29.447498 Earth years - `saturn`: orbital period 29.447498 Earth years.
- `uranus` : orbital period 84.016846 Earth years - `uranus`: orbital period 84.016846 Earth years.
- `neptune` : orbital period 164.79132 Earth years - `neptune`: orbital period 164.79132 Earth years.
So if you were told someone that their dog were 1,000,000,000 seconds old, you should be able to say that the dog is 221.82 Earth-years old. If you were told that a dog was 1,000,000,000 seconds old, you should calculate that the dog would be 221.82 Earth-years old.
You will have to format the number so that the result is rounded like the example above. You will have to format the number so that the result is rounded like the example above.