Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package mattroseb8wk2;
- // the inspiration is Day07F file
- public class Day09C {
- public static void main(String[] args) {
- String colorName = "Blue";
- switch (colorName) {
- case "blue" :
- case "yellow":
- case "red":
- System.out.println(colorName + " is a primary color");
- break;
- default:
- System.out.println("Color name not on list");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment