Program to calculate simple interest Post author:admin Post published:July 5, 2020 Post category:c++ Post comments:0 Comments #include #include main() { int p,r,t,si; clrscr(); cout<>p; cout<>r; cout<>t; si=(((p*r*t))/100); cout<<"n Calculated the simple interest is:"<<si; getch(); } You Might Also Like Program to show fibonacci series by overloading unary operator. July 5, 2020 Write a program to add two integer without prototyping and saving in C extension. July 5, 2020 Program to enter n number of elements using concept of pointer to array July 5, 2020 Leave a Reply Cancel replyCommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) Save my name, email, and website in this browser for the next time I comment.