This is a simple C++ program to calculate the simple interest based on the principal amount, rate of interest, and time period provided by the user.
- The program prompts the user to enter the principal amount.
- The program prompts the user to enter the rate of interest.
- The program prompts the user to enter the time period (in years).
- The program calculates the simple interest using the formula: [ \text{Simple Interest} = \frac{\text{Principal} \times \text{Rate} \times \text{Time}}{100} ]
- The program outputs the calculated simple interest.