Course Content
C++ Conditional Statements
1. Introduction to Conditional Statements
2. Conditional Control Flow Practice
3. Advanced Topics
C++ Conditional Statements
Parallelogram
Task
You have four integer values a
, b
, c
and d
, which represent the lengths of lines, determine if it is possible to create a parallelogram using these lines.
- Output
YES
, if it is possible. - Output
NO
, if it is not possible.
Everything was clear?
Section 2. Chapter 1