#include<iostream>
using namespace std;
// these are comments!

int main() {
    
float P , R , T ;
    cout<<"Enter Principle= "<<endl ;
    cin>>P ;

    cout<<"Enter Rate= "<<endl ;
    cin>>R ;

    cout<<"Enter Time= "<<endl ;
    cin>>T ;

    float SI= (P*R*T)/100 ;
    cout<<"Simple Interest= "<<SI<<endl ;

    float A= SI + P ;
    cout<<"Amount= "<<A ;
    
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: