Created
September 3, 2026 12:43
-
-
Save novaTopFlex/701be4aebf0b2db8a5b73ea2982b701f to your computer and use it in GitHub Desktop.
British Isles Example in Java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class App { | |
| public static void main(String[] args) throws Exception { | |
| System.out.println("England"); | |
| System.out.println("Scotland"); | |
| System.out.println("Wales"); | |
| System.out.println("Northern Ireland"); | |
| System.out.println("Republic of Ireland"); | |
| System.out.println("Jersey"); | |
| System.out.println("Guernsey"); | |
| System.out.println("Sark"); | |
| System.out.println("Gibraltar"); | |
| System.out.println("Herm"); | |
| System.out.println("Alderney"); | |
| System.out.println("Isle of Man"); | |
| System.out.println("Cayman Islands"); | |
| System.out.println("Turks and Caicos Islands"); | |
| System.out.println("Anguilla"); | |
| System.out.println("Montserrat"); | |
| System.out.println("Bermuda"); | |
| System.out.println("British Virgin Islands"); | |
| System.out.println("Canada"); | |
| System.out.println("Australia"); | |
| System.out.println("New Zealand"); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment