Skip to content

Commit 307455b

Browse files
problem 38 solved
1 parent 3bff72d commit 307455b

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

problem38/problem.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Calculate the average rate of profit

problem38/problem38.js

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
//Calculate the average rate(%) of profit
2+
3+
4+
function averageRateOfProfit(profits, invest ){
5+
let totalProfit = 0;
6+
for( let i = 0; i < profits.length; i++){
7+
const index = i ;
8+
const profit = profits[index];
9+
totalProfit = totalProfit + profit;
10+
}
11+
const averageProfit = totalProfit / profits.length;
12+
const averageInvest = invest / 2;
13+
const averageRateOfProfit = (averageProfit / averageInvest) * 100;
14+
const outputMessage = "Average Rate of profit is "+ averageRateOfProfit.toFixed(1)+"%";
15+
return outputMessage;
16+
17+
}
18+
19+
20+
21+
const profitsList = [60000, 70000, 75000, 80000, 85000];
22+
const totalInvest = 500000;
23+
const profitRate = averageRateOfProfit(profitsList, totalInvest );
24+
25+
console.log(profitRate);
26+

0 commit comments

Comments
 (0)