Conteúdo do Curso
Introdução ao C++
Introdução ao C++
Operadores Simples
O operador de atribuição (=)
) é usado em programação para atribuir um valor a uma variável. A sintaxe é a seguinte:
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 exatamente da mesma forma com o tipo de dado 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; }
Os operadores de igualdade (==
) e desigualdade (!=
) são usados para comparar numericamente 2 variáveis:
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; }
Obrigado pelo seu feedback!