You decide to buy some stocks for a certain price and then sell them at another price. Write a program that determines whether or not the transaction was profitable. Here are the details: • Take three separate inputs: the number of shares, the purchase price of the stocks, and the sale price, in that order. • You purchase the number of stocks determined by the input. • When you purchase the stocks, you pay the price determined by the input. • You pay your stockbroker a commission of 3 percent on the amount paid for the stocks. • Later, you sell the all of the stocks for the price determined by the input. • You pay your stockbroker another commission of 3 percent on the amount you received for the stock. Your program should calculate your net gain or loss during this transaction and print it in the following format: If your transaction was profitable (or if there was a net gain/loss of 0) print: "After the transaction, you made 300 dollars." (If, for example, you gained 300 dollars during the transaction.) If your transaction was not profitable, print: "After the transaction, you lost 300 dollars." (If, for example, you lost 300 dollars during the transaction.) Use string formatting.
Control structures
Control structures are block of statements that analyze the value of variables and determine the flow of execution based on those values. When a program is running, the CPU executes the code line by line. After sometime, the program reaches the point where it has to make a decision on whether it has to go to another part of the code or repeat execution of certain part of the code. These results affect the flow of the program's code and these are called control structures.
Switch Statement
The switch statement is a key feature that is used by the programmers a lot in the world of programming and coding, as well as in information technology in general. The switch statement is a selection control mechanism that allows the variable value to change the order of the individual statements in the software execution via search.
You decide to buy some stocks for a certain price and then sell them at another
price. Write a program that determines whether or not the transaction was
profitable. Here are the details:
• Take three separate inputs: the number of shares, the purchase
price of the stocks, and the sale price, in that order.
• You purchase the number of stocks determined by the input.
• When you purchase the stocks, you pay the price determined by the input.
• You pay your stockbroker a commission of 3 percent on the amount paid for
the stocks.
• Later, you sell the all of the stocks for the price determined by the input.
• You pay your stockbroker another commission of 3 percent on the amount
you received for the stock.
Your program should calculate your net gain or loss during this transaction and
print it in the following format:
If your transaction was profitable (or if there was a net gain/loss of 0) print:
"After the transaction, you made 300 dollars."
(If, for example, you gained 300 dollars during the transaction.)
If your transaction was not profitable, print:
"After the transaction, you lost 300 dollars."
(If, for example, you lost 300 dollars during the transaction.)
Use string formatting.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 3 images