/*
 * Task 05:
 * 
 * complete the following method to meet the 
 * indicated specification
 */

package task05;

public class Switch {
	
	// return the name of the country (as a String) whose country code
	// is the given integer
	// Country codes:
	// 60: Malaysia
	// 62: Indonesia
	// 65: Singapore
	// 66: Thailand
	
	// return the String "Not regional", if any other integer is passed as argument
	
	// use a switch statement in your solution
	
	public static String countryWithCode(int code) {
		// COMPLETE THIS METHOD

	}

}
