This repository has been archived on 2024-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
lessons/C++/lesson1/task4.cpp
2023-07-16 13:23:25 +00:00

22 lines
463 B
C++

#include <iostream>
#include <string>
using namespace std;
int main() {
int age1 = 1;
int age2 = 1;
int age3 = 1;
int weight1 = 4;
int weight2 = 4;
int weight3 = 1;
string color1 = "g";
string color2 = "r";
string color3 = "y";
if (age1 == age2 && age2 == age3 && weight1 == weight2 && weight2 == weight3 && !(color1 == color2 && color2 == color3)) {
cout << "YES\n";
} else {
cout << "NO\n";
}
}