Focus mode
==
Operator5 == 4
5 == 5
i = 10 j = 20
i == j
j = 10
i == j
==
kullanılması çok mantıklı değil, bunun nedenini ileriki derslerde göreceğiz.5.3 == 5.4
5.4 == 5.4
x = (0.3 * 3) + 0.1
y = 1.0
x == y
x
y
!=
Operator5 != 4
5 != 5
i = 10 j = 20
i != j
j = 10
i != j
>
Operator5 > 4
5 > 5
i = 10 j = 20
i > j
j = 5
i > j
5.3 > 5.4
5.4 > 5.3
>=
Operator5 >= 4
5 >= 5
5 >= 7
<
Operator5 < 4
5 < 5
<=
Operator5 <= 4
5 <= 5
i = 10 j = 20
i <= j
j = 10
i <= j
5.3 <= 5.4
5.4 <= 5.3
Programs to Accelerate Your Progress in a Software Career
Join our 4-8 month intensive Patika+ bootcamps, start with the fundamentals and gain comprehensive knowledge to kickstart your software career!
You need to enroll in the course to be able to comment!