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 enter value and display back value by using concept of class and object. July 5, 2020 Program to implement the concept of behaviour of constructor under inheritance. July 5, 2020 Program to check the imortance of virtual function or late binding for the implementation of the inheritance to get required output according to the given access(without using virtual). 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.
Program to check the imortance of virtual function or late binding for the implementation of the inheritance to get required output according to the given access(without using virtual). July 5, 2020