Skip to content

Commit 3bff72d

Browse files
problem 37 solved
1 parent 28d5712 commit 3bff72d

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

problem37/problem.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Calculate the interest. Just how to calculate. Will do with that thought. Now there is no need to worry whether interest is good or bad. Just try to do it from the angle of how to write it in code if there is a formula.
2+
3+
সুদের হিসাব করবে। জাস্ট হিসাব কেমনে করতে হয়। সেই চিন্তায় করবে। সুদ ভালো না খারাপ সেটা এখন চিন্তা করার দরকার নাই। জাস্ট একটা ফর্মুলা থাকলে সেটা কিভাবে কোড এ লিখতে হয় সেই এঙ্গেল থেকে করার চেষ্টা করো।

problem37/problem37.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/* Calculate the interest. Just how to calculate.
2+
Will do with that thought. Now there is no need to worry whether interest is good or bad.
3+
Just try to do it from the angle of how to write it in code if there is a formula. */
4+
5+
6+
7+
function calculateInterest(capital, rate){
8+
const interest = capital / 100 * rate ;
9+
const massage = "Your Capital is " + capital + " . And rate of Interest is "+ rate + ". So your total yearly profit / Interest is " + interest.toFixed(2) ;
10+
return massage;
11+
};
12+
13+
14+
15+
16+
const clintsCapital = 7410;
17+
const rateOfInterest = 3;
18+
19+
const profit = calculateInterest(clintsCapital, rateOfInterest);
20+
console.log(profit);

0 commit comments

Comments
 (0)