You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cout << "The principle amount was " << principle << " and the rate is " << rate << "% with " << years << " years. The total amount with interest is " << total << endl;
}
};
int main() {
int p, y, r;
cout << "Enter principle, years and interest rate:" << endl;