what is foreach loop and its uses? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

what is foreach loop and its uses?

how can we use for each loop examples and syntax?

2nd Sep 2017, 9:20 AM
Deepak Saini
Deepak Saini - avatar
2 Answers
+ 5
If arr is an integer array, then you can access it using the following foreach loop: for(int item: arr) { System.out.println(item); } It means you're defining each element of that array as item. So you can access the elements using item instead of arr [index]. foreach loop checks all elements of a collection from first to last, so you don't need the concept of index to access elements. So the basic syntax is: for(type variable_name : collection_name){ // access using variable_name }
2nd Sep 2017, 10:13 AM
Shamima Yasmin
Shamima Yasmin - avatar
+ 4
Here's some code that can maybe help you. https://code.sololearn.com/c07Z38dDsU79/?ref=app
2nd Sep 2017, 10:53 AM
Limitless
Limitless - avatar