Skip to content

Commit e6677da

Browse files
problem 19 solved
1 parent fdecb99 commit e6677da

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

problem19/problem.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
3+
Task:Write a function that returns the multiplication table of 13 as output.
4+
5+
একটা ফাংশন লিখবা যেটা ১৩ এর নামতা (multiplication table) আউটপুট হিসেবে দেখাবে।

problem19/problem19.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
//Task:Write a function that returns the multiplication table of 13 as output.
3+
4+
//একটা ফাংশন লিখবা যেটা ১৩ এর নামতা (multiplication table) আউটপুট হিসেবে দেখাবে।
5+
6+
7+
function multiplicationTable(){
8+
console.log("Multiplication Table Of 13");
9+
console.log("**************************");
10+
for(var i = 1; i <= 10; i++){
11+
12+
var baseNum = 13;
13+
console.log(baseNum, "*",i, "=", baseNum*i);
14+
};
15+
16+
};
17+
18+
multiplicationTable()
19+

0 commit comments

Comments
 (0)