Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Comparison Operators | Boolean Expressions and Logical Conditions
Control Flow in Kotlin

bookComparison Operators

Свайпніть щоб показати меню

Comparison Operators in Kotlin

Comparison operators let you check how two values relate to each other. In Kotlin, you use operators like ==, !=, >, <, >=, and <= to compare numbers, strings, or other data types. These operators always return a Boolean result — either true or false — depending on whether the comparison is correct.

  • Use == to check if two values are equal;
  • Use != to check if two values are not equal;
  • Use > to check if one value is greater than another;
  • Use < to check if one value is less than another;
  • Use >= to check if one value is greater than or equal to another;
  • Use <= to check if one value is less than or equal to another.

You use these operators in everyday programming to make decisions, filter data, or control the flow of your code. By understanding how comparison operators work, you can write code that responds differently based on the values being compared.

Main.kt

Main.kt

copy
question mark

Which operator checks if two values are equal in Kotlin?

Виберіть правильну відповідь

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 2

Запитати АІ

expand

Запитати АІ

ChatGPT

Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат

Секція 1. Розділ 2
some-alt