Contenido del Curso
Introducción a C++
Introducción a C++
Operadores Simples
El operador de asignación (=)
se utiliza en programación para asignar un valor a una variable. La sintaxis es la siguiente:
The assignment operator (=)
is used in programming to assign a value to a variable. It is one of the most commonly used operators, and we will explore its usage in the next section.
Funciona exactamente igual con el tipo de dato string
:
main
#include <iostream> #include <string> int main() { std::string myVar = "codefinity"; std::string yourVar; yourVar = myVar; //assign yourVar the value of myVar std::cout << myVar << std::endl; std::cout << yourVar << std::endl; }
Los operadores de igualdad (==
) y desigualdad (!=
) se utilizan para comparar numéricamente 2 variables:
main
#include <iostream> int main() { int var = 9; int yourVar = (var == 9); int myVar = (var == -9); std::cout << yourVar << std::endl; std::cout << myVar << std::endl; }
¡Gracias por tus comentarios!