Mallaiah has deposited an amount in the bank. After some period of time, he wanted to know the interest he is earning on the amount. So he went to the bank and got to know about the rate of the interest.
Now he would like to calculate the amount he earned with interest. Can you help Mallaiah?
Functional Description:
Interest = ( Amount * Rate * Time ) / 100
Input Format:
The First line of the input is a deposited amount
The Second line of the input is a rate of interest
The Third line of the input is a time duration
Output Format:
Print the output in a single line with 4 values after decimal point.
#include <stdio.h> int main() { float amount,rate,time,si; scanf("%f\n%f\n%f",&amount,&rate,&time); si=(amount*rate*time)/100; printf("%.4f",si); return 0; }
INPUT_1:
45506.98
5.5
2.0
OUTPUT:
5005.7676
INPUT_2:
98786.12
7.3
4.5
OUTPUT:
32451.2402
Morae Q!
- Convert seconds to hours – HMS format.
- Find out the tax amount of the bill with tip for the meal.
- Find the area of the pyramid.
- Find the area of triangle using heron’s formula.
- Find the interest and amount resided in the bank.
- Convert the travel days to years and months.
- Find the first three powers of N number.
- Compute the height from feet and inches to centimetres.
- Calculate the amount of interest earned in the bank.
- Find the ways they can choose the sequence of dummy statues.
- Find the Lapindrome strings.
- Classify the salary of a person.
- Find the day on providing the week number.
- Find the least number of marble stones needed to pave the square mall.
- Find the number of steps on chessboard performed to satisfy a condition.
- Find the time, hours and minutes the train was delayed.
- Find the quantity of food packets shared and available.
- Compute all Arithmetic Operations.
- Find the amount to pay for the electricity bill.
- Find the sum of numbers with three values after decimal point.