Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Not sure where to go from here its written in a stripped-down programming language. Not sure if I did it correctly according to the problem.

Not sure where to go from here its written in a stripped-down programming language. Not sure if I did it correctly according to the problem.

image text in transcribed

Problem 3 Write pseudocode to represent the logic of a program that allows the user to enter the amount of money they have invested, the percentage annual return they expect on that investment, and the financial management company's fee for the year. The program then calculates and outputs the amount of money that the user has after adding the amount of their returns and paying the company's fee. In this nroram derlare the followino variahles' floating investedAmount floating percentageAnnualReturn floating companyFee floating endingBalance output "Welcome to the Annual Return Predictor!" "This program will calculats and outputs the amount of money." output "Please enter the amount you have invested: " input investedAmount output "Please enter the percentage of annual return: " input percentageAnnualReturn output "Please enter the company's fees for the year: " input companyFee endingBalance = investedAmount * (percentageAnnualReturn / 100) - companyFee output "Your company invested " + investedAmount output "Your company's annual expected return on that investment is " + percentageAnnualReturn output "Your financial managment company's fee for the year is " + companyFee Problem 4 Output "Your total amount after adding returns and paying company's fees is " + endingBalance endmain endprogram

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

Students also viewed these Databases questions

Question

Design a job advertisement.

Answered: 1 week ago