- This topic has 3 replies, 3 voices, and was last updated 1 year, 10 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
home-page-new › Forums › General Knowledge › For loop in Java
For loops can be used to loop through a sequence of numbers.
For example:
for(int i =0; i < 10; i ++) {
System.out.println(i);
}
This prints out the numbers: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9