Youth Calculator
Summary
You should now have enough knowledge to write a program to do some calculations yourself.
Task
- Create a new console application
- Create a program that
- asks the user for their age in years
- asks the user for their name
- displays how much younger than Ian they are (43, last time I checked) in a neatly formatted and clear message
- Run the program and try it with a few different ages.
- What happens if you enter 65?
- Modify the program so it asks for the comparison age as well
- Modify the program so it calculates and displays the age difference in months (to the nearest year).