typo guide c more-math rightshift (#31663)

* add output missing line; 'for' C guide in Spanish

* typo - update the right-shift variable from c to b

* typo - ES change var of right-shift from c to b

* typo - AR change the right-shift oper from c to b

* typo - CN update var of rightshift from 'c' to 'b'

* typo - PT update var of right-shift 'c' -> 'b'

* typo - RU update var of right-shift from 'c' to 'b'
This commit is contained in:
eliberator
2018-12-17 18:48:36 +01:00
committed by Christopher McCormack
parent ae9e79c31b
commit dcceee67fc
7 changed files with 14 additions and 14 deletions

View File

@ -90,7 +90,7 @@ C يفعل نفس الشيء: ضع `-` أمام رقم أو متغير - هذا
هذا المثال سوف يتحول `a` إلى اليمين `b` بت، وتعيين تلك النتيجة تساوي `c` .
`c = a >> c;
`c = a >> b;
`
## مشغلي تعيين مركبة
@ -172,4 +172,4 @@ C يفعل نفس الشيء: ضع `-` أمام رقم أو متغير - هذا
* توجد عمليات تخصيص مركبة لجميع العمليات غير أحادية
* a + = b هو نفسه a = a + b ، وهكذا
* يتيح لك Cast التبديل بين أنواع البيانات
* math.h لديه المزيد من الاشياء الرياضيات للعب مع
* math.h لديه المزيد من الاشياء الرياضيات للعب مع

View File

@ -94,7 +94,7 @@ c = a << b;
此示例将`a`向右移位`b`位,并将该结果设置为等于`c`
```C
c = a >> c;
c = a >> b;
```
## 复合赋值运算符
@ -181,4 +181,4 @@ a = abs(-1);
* 所有非一元操作都存在复合赋值操作
* a + = b与a = a + b相同依此类推
* Casting允许您在数据类型之间进行交换
* math.h有更多的数学东西可供使用
* math.h有更多的数学东西可供使用

View File

@ -114,7 +114,7 @@ This will shift `a` to the left by `b` bits, and set that result equal to `c`.
This example will shift `a` to the right by `b` bits, and set that result equal to `c`.
```C
c = a >> c;
c = a >> b;
```

View File

@ -94,7 +94,7 @@ Isto irá deslocar `a` para a esquerda por `b` pedaços, e definir que resultado
Este exemplo vai deslocar `a` para a direita por `b` pedaços, e definir que resultado igual a `c` .
```C
c = a >> c;
c = a >> b;
```
## Operadores de Atribuição Composta
@ -181,4 +181,4 @@ a = abs(-1);
* Operações de atribuição compostas existem para todas as operações não unárias
* a + = b é o mesmo que a = a + b, e assim por diante
* Casting permite que você troque entre tipos de dados
* math.h tem mais coisas de matemática para brincar
* math.h tem mais coisas de matemática para brincar

View File

@ -94,7 +94,7 @@ c = a << b;
Этот пример сдвинет `a` вправо на `b` бит и установит этот результат равным `c` .
```C
c = a >> c;
c = a >> b;
```
## Операторы контировки
@ -181,4 +181,4 @@ a = abs(-1);
* Существуют сложные операции присвоения для всех не унарных операций
* a + = b совпадает с a = a + b и т. д.
* Кастинг позволяет вам переключаться между типами данных
* У math.h есть больше математического материала для игры с
* У math.h есть больше математического материала для игры с

View File

@ -38,9 +38,9 @@ El bucle for se usa comúnmente cuando se conoce el número de iteraciones.
## Salida:
```shell
> Item on index 0 is 1
> Item on index 0 is 1
> Item on index 1 is 2
> Item on index 2 is 3
> Item on index 3 is 4
```
> Item on index 4 is 5
```

View File

@ -94,7 +94,7 @@ Esto desplazará `a` a la izquierda en `b` bits y establecerá ese resultado igu
Este ejemplo desplazará `a` a la derecha en `b` bits y establecerá ese resultado igual a `c` .
```C
c = a >> c;
c = a >> b;
```
## Operadores de asignación de compuestos
@ -181,4 +181,4 @@ a = abs(-1);
* Existen operaciones de asignación de compuestos para todas las operaciones no unarias.
* a + = b es lo mismo que a = a + b, y así sucesivamente
* Casting te permite intercambiar entre tipos de datos
* math.h tiene más cosas de matemáticas para jugar
* math.h tiene más cosas de matemáticas para jugar