English books
C# to the Point
.NET Appl. Development
German books
Kompaktkurs C# 7
Die .NET-Technologie
Home
Course Material
Applications
Projects
Simplifying Boolean expressions
Expression
Simplification
!(x < y && y < z)
x >= y || y >= z
(x != y) || !(y == z && y == x)
y != x || y != z
!(x >= -3 && x <= 0) && 5 < x
x > 5