1(a) Write an algorithm to calculate simple interest. Also draw flow chart for this algorithm (Hint : SI = (PTR)/100).

, , 1 comment

 Algorithm to Calculate Simple Interest

Algorithm Steps

  1. Start

  2. Read Principal Amount, Time, and Rate 

  3. Calculate interest using the formula ((P*T*R)/100)

  4. Print Simple Interest

  5. Stop

    Flowchart:

    Start

    Input P, T, R

    Calculate SI = (P × T × R) / 100

    Display SI

    Stop

1 comment:

  1. Nice and clear explanation of the algorithm for calculating simple interest. Breaking down the steps and formula makes it much easier for beginners to understand how the logic works in programming and problem solving. Learning these fundamentals is very helpful for students exploring technical careers. Those interested in practical skills can also explore programs in Data Science, Full Stack Development, and Digital Marketing.

    ReplyDelete