Advertisement
476179

whileLoop-loops1

Nov 14th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package lessons;
  2.  
  3. public class WhileLoop
  4. {
  5.  
  6. public static void main(String[] args)
  7. {
  8. int x = 0;
  9. //one cycle of a loop is an 'iteration', to keep tract of count you need control variable
  10. while (x<5)
  11. {
  12. System.out.println("hello");
  13. x++;
  14. }
  15.  
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement