[404218]: / Code / C++ / C++ Tutorial Source Files / 15_C++_IfElse3.cpp

Download this file

24 lines (17 with data), 386 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
bool isMale = false;
bool isTall = false;
if(isMale && isTall){
cout << "You are a tall male";
} else if (isMale && !isTall) {
cout << "You are a short male";
} else if(!isMale && isTall){
} else {
cout << "You are not male and not tall";
}
return 0;
}