Answer:
max(max(population1,population2),max(population3,population4));
Explanation:
The above written expression is for finding maximum among 4 variable. Since there is a limitation of using max function that it accepts only 2 arguments hence I have used 3 max functions.The inner max functions finds the maximum among the variables and then the outer max function finds the maximum among the maximum came out of the two functions.