C++ Program to Calculate Simple Interest

Write a C++ Program to Calculate Simple Interest with an example. This C++ program allows users to enter the actual amount (principle amount), ROI, and the total number of years and use them to calculate the simple interest. #include<iostream> using namespace std; int main() { float PA, ROI, time, si; cout << “Please enter the … Read more