Gli operatori di confronto utilizzati con 2 numeri
Osserva: solo i confronti che hanno successo vengono visualizzati.
Il codice
TextWindow.Write("Primo numero: ") num1=TextWindow.ReadNumber() TextWindow.Write("Secondo numero: ") num2=TextWindow.ReadNumber() If(num1 < num2) Then TextWindow.WriteLine(num + " < " + num2) EndIf If(num1 <= num2) Then TextWindow.WriteLine(num1 + " <= " + num2) EndIf If(num1 = num2) Then TextWindow.WriteLine(num1 + " = " + num2) Endif If(num1 > num2) Then TextWindow.WriteLine(num1 + " > " + num2) EndIf If(num1 >= num2) Then TextWindow.WriteLine(num1 + " >= " + num2) EndIf If(num1 <> num2) Then TextWindow.WriteLine(num1 + " <> " + num2) EndIf