Ch5_21_WhileLoop

 package com.company;


public class Ch5_21_WhileLoop {
public static void main(String[] args) {
//Quick Quiz
int i = 100;
while (i <= 200) {
System.out.print(i + " ");
i++;
}
}
}

Comments

Popular posts from this blog

#12_Binary searching

#10_Insertion in an array

#24_Stack_using_an_array