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. You also learned what real numbers are and about some of the nuances of working with them. 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.

Loops in Java

In this article, you will find a simple explanation of what loops are and what kinds of loops exist. And you'll also look at the implementation of several types of loops:

  • while — a loop with a precondition
  • do..while — a loop with a postcondition
  • for — a loop with a counter
  • for each — a kind for loop used to iterate over a collection of elements

How real numbers are structured

You already know what real numbers are: positive and negative numbers that include a fractional part. This is a massive topic in itself, and you can dig deep into it, but there is no need to panic. In this article, we'll talk only about the most important stuff: how real numbers are stored in memory and how to compare them. And we will also consider examples of why sometimes an error can creep in even in the simplest of comparisons.

How to use a 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. This construct puts multiple actions into a concise and understandable structure. And that's exactly what we'll talk about.


undefined
4
Опрос
Loops,  4 уровень,  8 лекция
недоступен
Loops
Loops