Contact: aviboots(AT)netvision.net.il
41,465 questions
54,012 answers
573 users
#include <iostream> int main() { float PrincipalAmount = 30000, Rate = 4, Years = 3; float SimpleInterest = (PrincipalAmount * Rate * Years) / 100; std::cout << "Simple Interest is : " << SimpleInterest; } /* run: Simple Interest is : 3600 */