Control flow / Conditional statements / if/else statements

#include <iostream>
using namespace std;

int n = -42;
string classify = (n > 0) ?
    "positive" : "negative";
//classify is "negative"

cout << "classify is "  << classify;