switch case

switch case

program to input 2 numbers and a choice.Using switch case we need to perform all the mathematical operation.Print a suitable error message if the choice is wrong

View Answers

February 17, 2012 at 4:08 PM

import java.util.*;
class SwitchCase 
{
    public static void main(String[] args) 
    {
        Scanner input=new Scanner(System.in);
        System.out.print("Enter Number1: ");
        int num1=input.nextInt();
        System.out.print("Enter Number2: ");
        int num2=input.nextInt();
        System.out.println("1 Addition");
        System.out.println("2 Subtraction");
        System.out.println("3 Multiplication");
        System.out.println("4 Division");
        System.out.println("5 Exit");

        System.out.print("Enter your choice: ");
        int choice=input.nextInt();
        switch(choice){
         case 1:
             int sum=num1+num2;
             System.out.println("Result is "+sum);
             break;

         case 2:
             int diff=0;
             if(num1>num2){
                 diff=num1-num2;
             }
             else{
                 diff=num2-num1;
             }
             System.out.println("Result is "+diff); 
             break;

         case 3:
             int mul=num1*num2;
             System.out.println("Result is "+mul);
             break;

         case 4:
             int div=0;
             if(num1>num2){
                 div=num1/num2;
             }
             else{
                 div=num2/num1;
             }
             System.out.println("Result is "+div);
             break;

         case 5:
             System.exit(0);
             break;

             default: 
                 System.out.println("Choose correct mathematical operation.");

        }
    }
}









Related Tutorials/Questions & Answers:
switch case
switch case  program to input 2 numbers and a choice.Using switch case we need to perform all the mathematical operation.Print a suitable error message if the choice is wrong
switch case
switch case  program to input 2 numbers and a choice.Using switch case we need to perform all the mathematical operation.Print a suitable error message if the choice is wrong
Advertisements
switch case instead of if else
switch case instead of if else  How to write code in switch case instead of if else in Java
Switch case + condition??
Switch case + condition??  I try to use a switch case with condition...(); } } else { List down = (List)display.getCurrent(); switch(down.getSelectedIndex()) { case 0: Tambo(); if( label.equals
using switch case
using switch case  Define a class MENU to perform the following operation depending upon the users choice using switch case 1)print square root... choice: "); int choice=input.nextInt(); switch(choice
Switch case in Jsp page
Switch case in Jsp page  <table> <tr><td>Enter Distance :</td> <td><input type="text" name="dis"/></td>... using switch case in jsp page
ModuleNotFoundError: No module named 'switch-case'
ModuleNotFoundError: No module named 'switch-case'  Hi, My Python... 'switch-case' How to remove the ModuleNotFoundError: No module named 'switch-case' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'switch-case'
ModuleNotFoundError: No module named 'switch-case'  Hi, My Python... 'switch-case' How to remove the ModuleNotFoundError: No module named 'switch-case' error? Thanks   Hi, In your python environment
Switch Case - Java Interview Questions
Switch Case  int x=100000; switch(x) { case 100000: printf("Lacks"); } output= Lacks I want reason why x matches switch case although range for int is in between something -32678 to +32676. Plz give me ans quickly
PHP Switch Case
Switch Case Control Structure: Almost every modern language supports switch case control structure. It is similar to if statements. Switch case is useful... should know how the switch case works, in switch case every case is considered
Switch case in java
Switch case in java In this section we will learn about switch case in java..., and java, switch case is used . switch  is a selection control mechanism used... will illustrate the use of switch case in java: import java.util.Scanner; public
Mysql Switch CASE
Mysql Switch CASE       Mysql Switch Case perform one of several different actions based... The Section of Tutorial illustrate an example from 'Mysql Switch Case'.To understand
Switch Case in Java
version of Java did not support String in switch/case. Switch statements works... case label A statement in the switch block can be labeled with one or more case... of the statements associated with the next case will take place. Example of Switch Statement
Write a java program to display the season given the month using switch case
Write a java program to display the season given the month using switch case  Write a java program to display the season given the month using switch case
i need to replace this if statement code with switch case code
i need to replace this if statement code with switch case code   i need to replace this code with switch case for(int i=0;i<100;i++){ if((i...){ switch(i/j){ case 3: System.out.println ("java
Find Capital using Switch-Case statement
Find Capital using Switch-Case statement In this Java Tutorial section, we are going to find the capital of our states using Switch-Case statement. For this, we have created two arrays i.e. array of states and array of capitals. Then we
Case Java Keyword
Keyword switch () { case 1: <statements> break... Case Java Keyword       The java keyword "case" is used to label each branch in the switch
C Break with Switch statement
with Switch-Case in C. The switch case statements allows to control complex..., the switch statement checks the condition and shows the second case i.e odd If you... C Break with Switch statement   
switch statement
switch statement   i want to write a java program that computes Fibonacci,factorial,string reversal and ackerman using switch case to run as a single program
Switch Statement
Switch Statement  How we can use switch case in java program ?   Note:-Switch case provides built-in multiway decision statement.It...); switch(days){ case 1: System.out.println("Sunday
Java switch statement
Java switch statement  What restrictions are placed on the values of each case of a switch statement
Switch
. Here is the general form of switch statement: switch (expression){ case 1.... Then there is a code block following the switch statement that comprises of multiple case... as a switch block. The appropriate case gets executed when the switch statement
The Switch statement
. Here is the general form of switch statement: switch (expression){ case 1...: switch (P {   // assume P is an integer variable case 1... is known as a switch block. The appropriate case gets executed when the switch
programes on switch
=input.nextInt(); switch(choice){ case 1...="+add); break; case 2...); break; case 3: double mul
Switch statement in PHP
Switch statement in PHP  HII, Explain about switch statement in PHP?   hello,ADS_TO_REPLACE_1 Switch statement is executed line by line. PHP executes the statement only when the case statement matches the value
Switch databases
Switch databases  How do you inter-change between relational databases without code changes
switch Java Keyword
, byte, short or int. then only the execution of the switch case will start.ADS_TO_REPLACE_1 -- Within a switch case, a case block cannot be terminated itself i.e.... statement at the end of each case block to exit from the switch statement
change color of back ground using switch
change color of back ground using switch   how to change back ground color according to day using switch case
Java Switch Statement
then switch statement can be used. It checks your choice and jump on that case label...; switch Switch case is followed by a parenthesized integer expression... case value exist. Execution continues after the end of the switch statement
Switch Statement with Strings in Java
Switch Statement with Strings in Java  Switch Statement with Strings in Java
Business case
Business case  hii, For which phase of RUP the "business case" for the project established ?   hello,ADS_TO_REPLACE_1 Inception phase of RUP the "business case" for the project established
switch functions - Java Beginners
your month of hire:") switch(n) { case(n="January"): document.write("Last... var n=0; n=prompt("Enter your month of hire:") switch(n) { case(n...switch functions  I am writing a script for use in a computer based
test case
test case  Hi Can you explain me how to write test case in java. regards kennedy
Matching Case
Matching Case  Hi, i want some code for matching case from an text file. i.e if i give an query called Java from the user,i need to get an output searching the text file all the names in that without case sensitive
Strings in Switch statement
have matched string. The comparison of string in switch statement is case... dayOfWeekArg) { String typeOfDay; switch (dayOfWeekArg) { case "...Strings in Switch statement In this section, you will learn about strings
ModuleNotFoundError: No module named 'switch'
ModuleNotFoundError: No module named 'switch'  Hi, My Python... 'switch' How to remove the ModuleNotFoundError: No module named 'switch'... to install padas library. You can install switch python with following command
ModuleNotFoundError: No module named 'switch'
ModuleNotFoundError: No module named 'switch'  Hi, My Python... 'switch' How to remove the ModuleNotFoundError: No module named 'switch'... to install padas library. You can install switch python with following command
case study
case study  Chocolate Manufacturer Case Study CDA Company is in the business of manufacturing chocolates. The company delivers various chocolate products like- chocolate bars ,chocolate powder ,chocolate gift box and chocolate
Conditional Examples(if - else- switch case) in JavaScript
Conditional Examples(if - else- switch case) in JavaScript... for using the switch case:- <body>  <... of code to be executed . switch statement:-This statement is used to if you
uisearchbar case sensitive
uisearchbar case sensitive  uisearchbar case sensitive
using switch,break and for loop
using switch,break and for loop  generate a 10 digit number and display the length of longest increasing series
using switch and break
using switch and break  generate a 10 digit number and display the length of longest increasing series
using if and switch stmt - Java Beginners
(); switch(menu) { case 1: System.out.print("Quantity: "); int q1 = scan.nextInt...using if and switch stmt  A cloth showroom has announced... be assumed. Write a program using "switch and if statement" to compute net amount
UML CASE Tools
UML CASE Tools  What requirements should a UML CASE tool meet
How to use switch statement in jsp code
with the switch expression then the statements under the case are executed. Default case... How to use switch statement in jsp code       switch is a type of control statement used
ModuleNotFoundError: No module named 'case'
ModuleNotFoundError: No module named 'case'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'case' How to remove the ModuleNotFoundError: No module named 'case' error
XML is case-sensitive
XML is case-sensitive  hello, can some body can tell me that Is XML case-sensitive or not ?   HELLO MAN,ADS_TO_REPLACE_1 YEAH, XML IS A CASE SENSITIVE LANGUAGE
XML case-sensitive
XML case-sensitive  Hi please anyone tell me Which parts of an XML document are case-sensitive? ThanksADS_TO_REPLACE_1
dth case study
dth case study  DTH Case Study BNM Corp is a new player in the DTH (Direct to Home) satellite TV business in India. It has a sister concern BNV Corp... the subscriber has to renew. The subscriber is also free to switch the packages
broad band case study
broad band case study  Broadband Case Study LKV Company is a new firm..., a receipt should be generated. The customer can switch between prepaid/postpaid... validity date, usage, validity expiry (in case of prepaid customer

Ads