Ответ:
not (a < 5) a >= 5
not (a >= 5) a < 5
not (x = 5) x <> 5
not ((3 < y) and (4 < z)) (3 >= y) or (4 >= z)
not((3 < y) or (4 < z)) (3 >= y) and (4 >= z)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
not (a < 5) a >= 5
not (a >= 5) a < 5
not (x = 5) x <> 5
not ((3 < y) and (4 < z)) (3 >= y) or (4 >= z)
not((3 < y) or (4 < z)) (3 >= y) and (4 >= z)