Answer:
- init_balance = float(input("Initial balance: "))
- interest = float(input("Annual interest rate in percent: "))
-
- montly_interest = (interest / 100) / 12
- current_amount = init_balance + init_balance * montly_interest
- print("After first month: %.2f " % current_amount)
-
- current_amount = current_amount + current_amount * montly_interest
- print("After second month: %.2f " % current_amount)
-
- current_amount = current_amount + current_amount * montly_interest
- print("After third month: %.2f " % current_amount)
Explanation:
The solution code is written in Python.
Firstly, prompt user to input initial balance and annual interest rate using input function (Line 1 - 2).
Next, divide the annual interest by 100 and then by 12 to get the monthly interest rate (Line 4).
Apply the formula to calculate the current amount after adding the monthly interest (Line 5) and display the current month after first month (Line 6).
Repeat the same steps of Line 5 - 6 to calculate amount after two and three months and display print them to console. (Line 8 - 12).
Answer:
I'll answer this question with a Pseudocode
<em>1. Start</em>
<em>2. Input Length</em>
<em>3. Surface Area1 = Length * Length</em>
<em>4. Surface Area2 = 6 * Surface Area1</em>
<em>5. Volume = Length * Length * Length</em>
<em>6. Print Surface Area1</em>
<em>7. Print Surface Area2</em>
<em>8. Print Volume</em>
<em>9. Stop</em>
<em />
Explanation:
The first line starts the Pseudocode
The second line accepts input for Length of the cube
The third line calculates the surface area of 1 side
The fourth line calculates the surface area of the cube
The fifth line calculates the volume of the cube
The sixth to ninth line prints the calculated parameters
The Pseudocode ends on line 9
I would say destructive criticism that only focuses on blaming an individual and is in the form of a personal attack with the result of destroying that person's self esteem. A constructive criticism on the other hand focuses on the objective problem to be solved and also on the other person's behaviour if it had a bad result but only in order to correct behaviour not to attack the person.
we both are in same problem
if you get a solution please let me know
Answer:
Conflicts
Explanation:
The struggle between two opposing forces or characters in a story. Conflicts can exist between two people, between a person and nature or a machine or between a person a whole society. a conflict can be internal, involving opposing forces within a person's mind.