Skip to content

Commit a3aa456

Browse files
prblem 14 completed
1 parent 7da05df commit a3aa456

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

problem14/problem.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Task 1. Print the numbers 58 to 98
2+
3+
Task 2. Print all the even numbers between 412 to 456
4+
5+
Task 3. Print all the odd numbers between 581 to 623

problem14/problme14.js

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/* Task 1. Print the numbers 58 to 98
2+
3+
Task 2. Print all the even numbers between 412 to 456
4+
5+
Task 3. Print all the odd numbers between 581 to 623 */
6+
7+
8+
// Task 1: Print the numbers 58 to 98
9+
10+
/* for( var i = 58; i <= 98; i++){
11+
console.log(i);
12+
} */
13+
14+
// Task 2: Print all the even numbers between 412 to 456
15+
16+
17+
// method a
18+
/* var num = 412;
19+
while ( num <= 456) {
20+
console.log(num);
21+
num+=2;
22+
23+
} */
24+
25+
// method b
26+
27+
var num = 412;
28+
29+
while( num <= 456){
30+
if( num % 2 == 0){
31+
console.log(num);
32+
}
33+
num++;
34+
}
35+
36+
// Task 3: Print all the odd numbers between 581 to 623
37+
38+
// method a
39+
40+
/* for( var i = 581; i <= 623; i+=2){
41+
console.log(i);
42+
}
43+
*/
44+
// method b
45+
46+
for( var i = 581; i <= 623; i++){
47+
if(i % 2 == 0){
48+
continue;
49+
}
50+
console.log(i);
51+
}

0 commit comments

Comments
 (0)