countryReference function

int countryReference(
  1. String country
)

Implementation

int countryReference(String country){

  switch(country.toLowerCase()){
    case "uganda":
      return 3;
    case "tanzania":
      return 2;
    case "ghana":
      return 1;
    case "ethiopia":
      return 4;
    case "kenya":
    default:
      return 0;
  }
}