I have uploaded all my projects in C, C++, HTML, CSS, Java, and Android Development Projects in a topic-wise sequential manner.
Further posts are uploaded on https://mohitx001.blogspot.com/
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
Post a Comment