multiple conditions in if code example

Example 1: if else statement with multiple conditions python

if( (5 ** 2 >= 25) and (4 * 2 < 8) or (35 / 7 > 4) ):
	print("Booleans make If more powerful!")

Example 2: ifdef multiple conditions

#if defined(CONDITION1) || defined(CONDITION2)

Example 3: if statement to compare between multi data

int maxOfFive (int a, int b, int c, int d, int e) {
    int largest = a;
    if (b > largest) largest = b;
    if (c > largest) largest = c;
    if (d > largest) largest = d;
    if (e > largest) largest = e;
    return largest;
}