Westonci.ca makes finding answers easy, with a community of experts ready to provide you with the information you seek. Explore comprehensive solutions to your questions from a wide range of professionals on our user-friendly platform. Get detailed and accurate answers to your questions from a dedicated community of experts on our Q&A platform.
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
Thank you for visiting. Our goal is to provide the most accurate answers for all your informational needs. Come back soon. Thanks for using our service. We're always here to provide accurate and up-to-date answers to all your queries. We're here to help at Westonci.ca. Keep visiting for the best answers to your questions.