Please explain and solve the
problem using C++
1. Write a complete C+ + program that does the following: o Prompts the user for: their name age (in years) height in inches
o Says "hello" to the user (using their name) and tells them:
their age in days their height in feet and inches Sample run of program:
What is your name? Cathy What is your height in inches? 66
What is your age? 24
Hello, Cathy.
Your age in days is 8760. Your height in feet and inches is 5 feet 6 inches.