Skip to content

Instantly share code, notes, and snippets.

@coderpr
Created April 11, 2017 13:38
Show Gist options
  • Save coderpr/ee76449d73a6a03c7a531b9dff6c9169 to your computer and use it in GitHub Desktop.
Save coderpr/ee76449d73a6a03c7a531b9dff6c9169 to your computer and use it in GitHub Desktop.
/**
*
* @author prlabs
*
*/
class example{
public static void main(String args[]){
char color = 'd';
switch(color){
case 'r' : System.out.println("Red");
case 'g' : System.out.println("green");
case 'w' : System.out.println("White");
case 'b' : System.out.println("blue");
default : System.out.println("No Have Color");
}
}
}
/* change your class name and run the program */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment