For Loops

Lesson 21
Author : Afrixi
Last Updated : October, 2017


Java - Programming Language
This course covers the basics of programming in Java. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!
Table of Content

Video Code

Copyfor(int i = 0; i < 5; i++){
     System.out.println(i);
}

int luckyNums[] = {4, 8, 15, 16, 23, 42};
for(int luckyNum : luckyNums){
     System.out.println(luckyNum);
}