Connect with a global community of knowledgeable individuals on IDNLearn.com. Whether your question is simple or complex, our community is here to provide detailed and trustworthy answers quickly and effectively.
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 joining our conversation. Don't hesitate to return anytime to find answers to your questions. Let's continue sharing knowledge and experiences! Thank you for choosing IDNLearn.com for your queries. We’re here to provide accurate answers, so visit us again soon.