- or download this
// YES // YES // NO
if (cond) if (cond) { if (cond) {
...
else } else { } else
alternate(); alternate(); alternate();
}
- or download this
double calc_stuff(double x)
{
return 0 if x < 0;
...
}
- or download this
if (condition) { task() }
task() if condition;