Question
*Notice: I can only edit the part where it says in /* Your solution goes here */ the other part of the code i can't
*Notice: I can only edit the part where it says in /* Your solution goes here */ the other part of the code i can't touch it please the solution should be inside that part ad using the code provided
Complete the function ConvertToDecadesAndYears to convert totalYears to decades and years. Return decades and years using the TimeDecadesYears struct. Ex: 24 years is 2 decades and 4 years.
#include using namespace std;
struct TimeDecadesYears { int decades; int years; };
TimeDecadesYears ConvertToDecadesAndYears(int totalYears) { TimeDecadesYears tempVal;
/* Your solution goes here */
}
int main() { TimeDecadesYears elapsedYears; int totalYears;
cin >> totalYears; elapsedYears = ConvertToDecadesAndYears(totalYears); cout << elapsedYears.decades << " decades and " << elapsedYears.years << " years" << endl;
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started