Posted on by Kalkicode
Code Mathematics

Program to calculate simple interest in typescript

Ts Program to calculate simple interest. Here more solutions.

//  Typescript program for
//  Calculate simple interest

// Method which is take three parameters
// And calculates that simple interest
// Here time is form in year
// rate is form of annual interest rate
function simpleInterest(principle:number, 
                         time:number, 
                         rate:number)
{
  // Display parameters values
  console.log("Principal : " + principle);
  console.log("Time : " + time);
  console.log("Rate : " + rate);
  // Calculate interest
  var amount = (principle * time * rate) / 100;
  // Display amount
  console.log("Simple Interest : " + amount + "\n");
}

// Test Cases
simpleInterest(1500, 3, 7.3);
simpleInterest(170.4, 7, 3.4);
/*
 file : code.ts
 tsc --target es6 code.ts
 node code.js
 */

Output

Principal : 1500
Time : 3
Rate : 7.3
Simple Interest : 328.5

Principal : 170.4
Time : 7
Rate : 3.4
Simple Interest : 40.55519999999999

Comment

Please share your knowledge to improve code and content standard. Also submit your doubts, and test case. We improve by your feedback. We will try to resolve your query as soon as possible.

New Comment