• PL
  • EN

Pojęcie inkrementacji i dekrementacji.

Na zmiennych w których przechowujemy liczby, możemy wykonywać różnego rodzaju operacje matematyczne. Mówiąc inaczej możemy sprawić, żeby w trakcie wykonywania programu zmieniała się wartość liczbowa zawarta w zmiennej. W jakim celu się to robi? Odpowiedzmy na to pytanie innym pytaniem: A dlaczego w trakcie gry ilość punktów oraz żyć ulega zmianie?
Musimy nauczyć się w jaki sposób zwiększać lub zmiejszać liczby umieszczone w zmiennych.

INKREMENTACJA.

Jest to operacja mająca na celu zwiększenie wartości liczbowej dokładnie o JEDEN.

Można to zrobić na przynajmniej dwa sposby:

Na powyższym rysunku widzisz operację przypisania. Do zmiennej x po lewej stronie równania, zostaje przypisane wszystko to, co widoczne jest z prawej strony równania.
Mówiąc językiem ludzkim opracja ta ma na celu w zmiennej x zapisać to co do tej pory było w tej zmiennej, ale powiększone o 1.

Można wykonać dokładnie taką samą operację w wersji skróconej:

DEKREMENTACJA.

Jest to operacja mająca na celu zmniejszenie wartości liczbowej dokładnie o JEDEN.

Można to zrobić na przynajmniej dwa sposby (w formie tekstowej i blokowej):

Na powyższym rysunku widzisz operację przypisania. Do zmiennej x po lewej stronie równania, zostaje przypisane wszystko to, co widoczne jest z prawej strony równania.
Mówiąc językiem ludzkim opracja ta ma na celu w zmiennej x zapisać to co do tej pory było w tej zmiennej, ale zmniejszone o 1.

Można wykonać dokładnie taką samą operację w wersji skróconej:

WARTO WIEDZIEĆ!

W zasobniku (TOOLBOX) nie ma wyrażenia x++ oraz x--. Możesz stworzyć to wyrażennie wyłącznie w trybie tekstowym. Istnieją inne wyrażenia, które nie znajdują swoich blokowych odpowiedników. Język JavaScript jest zwyczajnie dużo bogatszy i wszystkie komendy nie zmieściłyby się w zasobniku.

The concept of incrementation and decrementation.

On the variables in which we store numbers, we can perform various mathematical operations. Speaking in other words, we can make the numerical value contained in the variable change during program execution. For what purpose is this done? Let's answer this question with another question: And why does the number of points and lives change during the game?
We need to learn how to increase or decrease numbers placed in variables.

INCREMENTATION.

This is an operation to increase a numerical value by exactly ONE.

. This can be done in at least two ways:

In the picture above you can see the attribution operation. To the variable x on the left side of the equation, is assigned all that is visible on the right side of the equation.
In human language, the operation is to store in the variable x zapisać what has been in this variable so far, but increased by 1.

You can perform exactly the same operation in a shortened version:

DECREMENTATION.

This is an operation to reduce a numerical value by exactly ONE.

This can be done in at least two ways (in text and block form):

In the picture above you can see the attribution operation. To the variable x on the left side of the equation, is assigned all that is visible on the right side of the equation.
In human language, the operation is to store in the variable x zapisać what has been in this variable so far, but reduced by one.

You can perform exactly the same operation in a shortened version:

GOOD TO KNOW!

There are no x++ and x-- expressions in the tray. You can create this expression only in text mode. There are other expressions that do not find their block equivalents. The JavaScript language is simply much richer and all the commands would not fit in the tray of.