Quick actions

cmd+k|ctrl+k

Navigation

Languages

Simple Interest

Snippet info

Language

Cpp

Visibility

public

Author

aaditya.barak5

Created

2021-03-27T11:45:06.999339Z

Updated

2021-03-27T11:45:06.999339Z

#include <iostream>
using namespace std;

int main() {
    float p,r,t;
    cin >> p >> r >> t;
    float si;
    si=(p*r*t)/100;
    cout << si << endl;
    return 0;
}
INFO