Control Structures
The if .. else .. if .. statement
|
1. [ C++ ] if .. else .. ifPrint small, Medium or BIG.
test text
1. [ Java ] if .. else .. ifPrint small, Medium or BIG.
test text
1. [ C# ] if .. else .. ifPrint small, Medium or BIG.
test text
2. [ C++ ] if .. if .. elseWith 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.
test text
2. [ Java ] if .. if .. elseWith 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.
test text
2. [ C# ] if .. if .. elseWith 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.
test text
|