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
- 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 this 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 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 stocks.
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.



Answer :

Other Questions