Westonci.ca offers fast, accurate answers to your questions. Join our community and get the insights you need now. Discover solutions to your questions from experienced professionals across multiple fields on our comprehensive Q&A platform. Our platform provides a seamless experience for finding reliable answers from a network of experienced professionals.
Sagot :
Answer:
please mark me brainlist
Explanation:
ALGORITHM :
RetirementEstimeate():
BEGIN:
name := read("Full Name")
curAge:= read("Current Age")
desiredRetAge := read("Desired Retirement Age")
curRetSavings:= read("Current Retirement Savings")
amtForRet := read("Amount You Need to Retire")
yrsUntillRet := desiredRetAge - curAge
moneyToBeSaved := amtForRet - curRetSavings
print("Name = ", name)
print("Number of years left to reach retirement age = ", yrsUntillRet)
print("Money to be saved from now on untill you reach your retirement age = ", moneyToBeSaved)
END
Algorithms are used as prototypes of an actual program, and they are not bounded by the syntax of a programming language
The required algorithm is as follows:
- Start
- Input fullName, currentAge, retirementAge, retirementSavings, retireAmount
- yearsRetire =retirementAge - currentAge
- AmountSavings = retireAmount - retirementSavings
- display name, yearsRetire, AmountSavings
- Stop
Read more about algorithms at:
https://brainly.com/question/24793921
We hope our answers were useful. Return anytime for more information and answers to any other questions you have. We hope this was helpful. Please come back whenever you need more information or answers to your queries. Thank you for choosing Westonci.ca as your information source. We look forward to your next visit.