If the topics we've covered aren't clear... Repeat them over and over again until they are :) But we hope that the lessons in this level have given you a good understanding of how to use loops in Java. To sort out all the new information in your brain and help you understand how the programming theory is used in practice, we prepared a few additional materials for you.

For loop in Java

They say that the best programmer is the lazy programmer. Instead of repeating the same operations several times, the smart programmer will come up with an algorithm to do the necessary work for him or her. And do it so well so that it doesn't need to be redone. In some cases, a for loop will help you write the smallest required number of lines of code. In this article, we dive into its operating principles and examples of using them to solve various problems.

The while statement

Our very first programs were a sequence of instructions executed one after another, but programming work very often involves problems that require a completely different approach. A while loop puts multiple actions into a concise and understandable structure. And that's exactly what we'll talk about.


undefined
6
Task
New Java Syntax, level 6, lesson 6
Locked
Triangular array
Create a triangular array where the value of each element is the sum of its indices. For example: array[7][3] = 7 + 3 = 10, array[3][0] = 3 + 0 = 3. Display the array in the following form: 0 1 2 2 3 4 3 4 5 6 4 5 6 7 8 5 6 7 8 9 10 ... The numbers in each line are separated by a space. You can def
undefined
6
Task
New Java Syntax, level 6, lesson 6
Locked
Creating a two-dimensional array
A two-dimensional array is an array of arrays. That is, an array where each cell holds a reference to an array. But it is much easier to think of it as a table that has a number of rows (first dimension) and a number of columns (second dimension). In this task, we will create such an array. Impleme
undefined
6
Task
New Java Syntax, level 6, lesson 6
Locked
Creating a multi-array
In the main(String[]) method, display all the numbers in the three-dimensional multiArray array.