HarrJ

B8 Day 9 color color

Sep 20th, 2022
1,262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. package mattroseb8wk2;
  2.  
  3. // the inspiration is Day07F file
  4. public class Day09C {
  5.     public static void main(String[] args) {
  6.         String colorName = "Blue";
  7.         switch (colorName) {
  8.             case "blue" :
  9.             case "yellow":
  10.             case "red":
  11.                 System.out.println(colorName + " is a primary color");
  12.                 break;
  13.             default:
  14.                 System.out.println("Color name not on list");
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment