Computer Science, asked by atharvashende989, 3 months ago

Write a program to print odd numbers between 101 and 200 (Using IF-THEN-ELSE statement).

Answers

Answered by brainlistpro
0

Answer:

Javascript Program

Explanation:

var s = 101 ;

while( s < 200 ){

if( s%2 != 0 ){

document.write( s ) ;

s++ ;

}else{

s++ ;

}

}

Similar questions