!=

Descrição

Compara a variável à esquerda com o valor ou variável à direita do operador. Retorna verdadeiro (true) quando os operandos não são iguais. Por favor note que você pode comparar variáveis de tipos de dados diferentes, mas isso pode gerar resultados imprevisíveis. Por isso é recomendado comparar variáveis do mesmo tipo de dados incluindo o atributo signed/unsigned.

Sintaxe

x != y; // é falso se x é igual a y e é verdadeiro se x não é igual a y

Parâmetros

  • x: variável. Tipos de dados permitidos: int, float, double, byte, short, long
  • y: variável ou constante. Tipos de dados permitidos: int, float, double, byte, short, long

Código de Exemplo

void setup() { Serial.begin(9600); int x = 1; int y = 2; if (x != y) // testa se x é diferente de y Serial.println("x is NOT equal to y"); else Serial.println("x is equal to y"); } void loop() { }

The result on Serial Monitor:

COM6
Send
x is NOT equal to y
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

Ver Também

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.

※ OUR MESSAGES