Skip to content

greaterthan

villares edited this page May 24, 2020 · 4 revisions

Nome

> (maior)

Exemplos

int a = 5; 
int b = 13; 
if(b > a) { 
 println("variable b is larger the variable a"); 
} 

Descrição

Testa se o valor à esquerda é maior que o valor à direita.

Sintaxe

valor1 > valor2
            

Parâmetros valor1 int ou float

valor2 int ou float

Utilização

Web & Applicações

Relacionado

   >= 

maior ou igual  < 

menor  <= 

menor ou igual  == 

igual  != 

diferente

Clone this wiki locally