Commonly we have a sequence of tests that should be made. We sometimes break the rule regarding indentation to made the code easier to read.
See also: Boxes tutorial
See also: if .. else ...
See also: if .. elsif ...
See also: switch ... case
1. [ C# ] if .. else .. if
Print small, Medium or BIG.
2. [ C# ] if .. if .. else
With two if statements together it may not be obvious how the else statements relate. Notice that in this example there is no code associated with (area<99999) being false.
Note that the line that starts "Australia" does not get finished.