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

#19_(2)Functions in C

Ch7_32_MethodOverloading

#72_Function Pointers in C