Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

*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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional Microsoft SQL Server 2014 Integration Services

Authors: Brian Knight, Devin Knight

1st Edition

1118850904, 9781118850909

More Books

Students also viewed these Databases questions

Question

Describe the major barriers to the use of positive reinforcement.

Answered: 1 week ago

Question

Bring out the limitations of planning.

Answered: 1 week ago

Question

Why should a business be socially responsible?

Answered: 1 week ago

Question

Discuss the general principles of management given by Henri Fayol

Answered: 1 week ago

Question

Detailed note on the contributions of F.W.Taylor

Answered: 1 week ago