Skip to content

Commit fdecb99

Browse files
problem 18 solved
1 parent f644731 commit fdecb99

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

problem18/problem.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
তোমার যত বই আছে সেগুলার দাম নিয়ে একটা array লিখে ফেলো। যে বই গুলোর দাম ২০০ টাকার উপরে সেগুলাকে স্কিপ করবে। অর্থাৎ সেগুলাকে আউটপুট হিসেবে দেখাবে না। বাকিদের কে আউটপুট হিসেবে দেখাবে। দেখো করতে পারো কিনা।
2+
3+
Write an array with the prices of all the books you have. The books whose price is above 200 rupees will be skipped. That is, they will not show as output. The rest will be displayed as output. See if you can.

problem18/problem18.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//Write an array with the prices of all the books you have. The books whose price is above 200 rupees will be skipped. That is, they will not show as output. The rest will be displayed as output. See if you can.
2+
3+
4+
var myBooksPrice = [90, 300, 85, 35, 125, 48, 98, 99, 20, 500, 820, 400];
5+
6+
for( var i = 0; i < myBooksPrice.length; i++){
7+
8+
var booksPrice = myBooksPrice[i];
9+
10+
if( booksPrice >= 100){
11+
continue;
12+
}
13+
console.log(booksPrice);
14+
15+
}
16+

0 commit comments

Comments
 (0)