Answers for "switch case with multiple conditions"

3

java switch multiple values

switch (num) {
            case 5:
            case 2:
            case 3:
                System.out.println("5,2,3");
                break;
            case 4:
            case 6:
                System.out.println("4,6");
                break;
            case 1:
                System.out.println("1");
                break;
            default:
                System.out.println("Inavlid number");
                break;
        }
Posted by: Guest on April-02-2020
0

switch case with multiple conditions

switch (measurement)
{
	case "oz":
		{
          qty = Math.round (qty * 28.3495);
          qty= (int)qty;
          measurement= "g";
          System.out.print(qty);
		}
	break;
	case "fl oz":
        {
          qty = Math.round (qty * 29.5735);
          qty= (int)qty;
          measurement= "ml";
          System.out.print(qty);
      	}
    break;
    default:
        {
          qty =(int)qty;
          System.out.print(qty);
        }
}//end switch case
Posted by: Guest on May-30-2021

Code answers related to "switch case with multiple conditions"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language