First page Back Continue Last page Graphics
More If constructions
Either branch of an if can contain another if.
Most often it is the false branch. This implements if else if else
if ( ch = 'A')
gradea++;
else if ( ch == 'B')
gradeb++;
else
gradec++;