From ce23e9a86ad0957f1cd010ec39702671e0fd1b97 Mon Sep 17 00:00:00 2001 From: Mateo A Zabala G Date: Tue, 13 Aug 2019 08:51:22 -0500 Subject: [PATCH] =?UTF-8?q?Correci=C3=B3n=20del=20titulo=20(#29190)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corregí el titulo y el titulo local para que se viera correctamente la tabla. --- .../cplusplus/the-if-statement/index.md | 185 +++++++++--------- 1 file changed, 93 insertions(+), 92 deletions(-) diff --git a/guide/spanish/cplusplus/the-if-statement/index.md b/guide/spanish/cplusplus/the-if-statement/index.md index 6797340094..8c93cb6000 100644 --- a/guide/spanish/cplusplus/the-if-statement/index.md +++ b/guide/spanish/cplusplus/the-if-statement/index.md @@ -1,95 +1,96 @@ --- title: C++ If Statement localeTitle: C ++ If Declaración ---- # La declaración IF. - -**¿Qué hace una sentencia if?** - -* La instrucción `if` evalúa la expresión de prueba presente dentro del paréntesis. -* La instrucción `if` usa operadores relacionales y lógicos para hacer expresiones lógicas. - -* * * - -La forma general de la declaración `if` : - -```cpp - if (Test Expression / Condition) - { - // Block of statements if test expression is True - } -``` - -Si el valor de la expresión de prueba es **verdadero** , entonces el bloque de Código dentro de la sentencia if se ejecuta. - -Si el valor de la expresión de prueba es **falso** , entonces el bloque de el código dentro de la sentencia if se omite y su código continúa. - -Ejemplo `if` declaración: - -```cpp - int a = 10; - - // true statement - if (a < 20) - { - // execute this block of code - } - - // false statement - if (a < 0) - { - // Skip this block of code. - } -``` - -Ejemplo en C ++: - -```cpp - // Program to check if number entered by the user is positive - // If negative, the block of code is skipped - - #include - using namespace std; - - int main() - { - int no ; - cout << "Enter a number: "; - cin >> no; - - // if statement to check if the number is positive - if ( no > 0) - { - cout << "You have entered a positive number: " << no << endl; - } - - // If number is not positive, then if statement is skipped a program continues - cout << "This step is always printed" << endl; - - return 0; - } -``` - -**Salida:** - -SALIDA 1: -``` -Enter a number: 5 - You have entered a positive number: 5 - This step is always printed - ``` - This is the output when the number entered is positive. - - OUTPUT 2: -``` - -Introduce un número: -1 Este paso siempre se imprime. \`\` \` Esta es la salida cuando el número introducido es negativo. - -[Pruebe el código usted mismo! :)](https://repl.it/Mg9X) - -_FELICIDADES . Este es el final del artículo sobre la declaración IF._ - -**Buena suerte a todos ustedes** - -**¡Feliz codificación! :)** - -**No dude en preguntar cualquier duda en la página de GitHub de [FreeCodeCamp](https://forum.freecodecamp.org/) o en [el foro de FreeCodeCamp.](https://forum.freecodecamp.org/)** \ No newline at end of file +--- +# La declaración IF. + +**¿Qué hace una sentencia if?** + +* La instrucción `if` evalúa la expresión de prueba presente dentro del paréntesis. +* La instrucción `if` usa operadores relacionales y lógicos para hacer expresiones lógicas. + +* * * + +La forma general de la declaración `if` : + +```cpp + if (Test Expression / Condition) + { + // Block of statements if test expression is True + } +``` + +Si el valor de la expresión de prueba es **verdadero** , entonces el bloque de Código dentro de la sentencia if se ejecuta. + +Si el valor de la expresión de prueba es **falso** , entonces el bloque de el código dentro de la sentencia if se omite y su código continúa. + +Ejemplo `if` declaración: + +```cpp + int a = 10; + + // true statement + if (a < 20) + { + // execute this block of code + } + + // false statement + if (a < 0) + { + // Skip this block of code. + } +``` + +Ejemplo en C ++: + +```cpp + // Program to check if number entered by the user is positive + // If negative, the block of code is skipped + + #include + using namespace std; + + int main() + { + int no ; + cout << "Enter a number: "; + cin >> no; + + // if statement to check if the number is positive + if ( no > 0) + { + cout << "You have entered a positive number: " << no << endl; + } + + // If number is not positive, then if statement is skipped a program continues + cout << "This step is always printed" << endl; + + return 0; + } +``` + +**Salida:** + +SALIDA 1: +``` +Enter a number: 5 + You have entered a positive number: 5 + This step is always printed + ``` + This is the output when the number entered is positive. + + OUTPUT 2: +``` + +Introduce un número: -1 Este paso siempre se imprime. \`\` \` Esta es la salida cuando el número introducido es negativo. + +[Pruebe el código usted mismo! :)](https://repl.it/Mg9X) + +_FELICIDADES . Este es el final del artículo sobre la declaración IF._ + +**Buena suerte a todos ustedes** + +**¡Feliz codificación! :)** + +**No dude en preguntar cualquier duda en la página de GitHub de [FreeCodeCamp](https://forum.freecodecamp.org/) o en [el foro de FreeCodeCamp.](https://forum.freecodecamp.org/)**