File tree 2 files changed +56
-0
lines changed
2 files changed +56
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments