In this example we use an accumulator to count the countries in Africa.
Notice that acc shows up three times:
acc is set to zero at the start.int acc = 0;
acc.
if (line.contains("Africa"))
{
acc++;
}
acc contains the value
we want - so we print it.System.out.println(acc);
Change the program so that it counts the countries of Asia. Do NOT include the countries of Southeast Asia.
The accumulating variable is a very common trick in programming.
The accumulator builds up the values - so that it is "right-so-far".
For example in this program acc always holds the number of
countries in Africa in the lines that have been read so far.
Count the number of countries with an area of more than 1500000.
Produce a numbered list of countries:
1 Afghanistan 2 Albania 3 Algeria ... 262 Zimbabwe
Use three character spaces for the number and put a single space after it.
Print the name of country number 42