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 of the number 2)print rounded down value of a number(in decimals) 3)print rounded up value of a number(in decimals) 4)Quit

View Answers

February 16, 2012 at 5:11 PM

import java.util.*;
class Menu 
{
    public static void main(String[] args) 
    {
        Scanner input=new Scanner(System.in);
        System.out.print("Enter Number: ");
        double num=input.nextDouble();
        System.out.println("1 Print Square Root");
        System.out.println("2 Rounded down");
        System.out.println("3 Rounded Up");
        System.out.println("4 Quit");

        System.out.print("Enter your choice: ");
        int choice=input.nextInt();
        switch(choice){
         case 1:
             System.out.println("Square Root of "+num+" is: "+(Math.sqrt(num)));
             break;

         case 2:
             System.out.println("Rounded Down of "+num+" is: "+(Math.ceil(num)));
             break;

         case 3:
             System.out.println("Rounded Up of "+num+" is: "+(Math.floor(num)));
             break;

         case 4:
             System.exit(0);
             break;
        }
    }

}









Related Tutorials/Questions & Answers:
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
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
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
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
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
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 in Jsp page
using switch case in jsp page...Switch case in Jsp page  <table> <tr><td>Enter Distance :</td> <td><input type="text" name="dis"/></td>
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
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
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
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
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
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
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
using case in update statement
using case in update statement  i want to use case in update clause. i have used case in select stmt referring answer in this site. but the same syntax is not working for update stmt.my problem is update emp set case deptno
using if and switch stmt - Java Beginners
using if and switch stmt  A cloth showroom has announced... be assumed. Write a program using "switch and if statement" to compute net amount...(); switch(menu) { case 1: System.out.print("Quantity: "); int q1 = scan.nextInt
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
Case-insensitive ordering using Hibernate Criteria.
Case-insensitive ordering using Hibernate Criteria.  What is Case-insensitive ordering in Hibernate Criteria
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... of the day, based on the value of week, using the switch statement
Case-insensitive equals using Hibernate Criteria.
Case-insensitive equals using Hibernate Criteria.  How to use Case-insensitive equals with Hibernate Criteria?   The Case Insensitive ignores the case of the latter. It Selects all the records of the table related
Case-sensitive equals using Hibernate Criteria.
Case-sensitive equals using Hibernate Criteria.  How to check for case sensitive equals in Hibernate criteria?   package net.roseindia.main; import java.util.*; import net.roseindia.table.Employee; import
core java ,io operation,calling methods using switch cases
core java ,io operation,calling methods using switch cases  How to create a dictionary program,providing user inputs using io operations with switch cases and providing different options for searching,editing,storing meanings
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
Case-insensitive search using Hibernate Query Language(HQL).
Case-insensitive search using Hibernate Query Language(HQL).  What is Case-insensitive search using Hibernate Query Language
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
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
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... on the value of week, using the switch statement
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   
Java switch statement
Java switch statement  What restrictions are placed on the values of each case of a switch statement
programes on switch
=input.nextInt(); switch(choice){ case 1...="+add); break; case 2...); break; case 3: double mul
Strings in Switch statement
in switch statements which is recently added feature in Java SE 7. Using JDK 7... have matched string. The comparison of string in switch statement is case... dayOfWeekArg) { String typeOfDay; switch (dayOfWeekArg) { case "
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 functions - Java Beginners
your month of hire:") switch(n) { case(n="January"): document.write("Last... friend, This is running code, switch option using in javaSctipt var n=0; n=prompt("Enter your month of hire:") switch(n) { case(n
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
Conditional Examples(if - else- switch case) in JavaScript
for using the switch case:- <body>  <... Conditional Examples(if - else- switch case) in JavaScript... of code to be executed . switch statement:-This statement is used to if you
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
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
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
CASE IN UPDATE IN MYSQL
CASE IN UPDATE IN MYSQL  I WANT THE SYNTAX FOR USING CASE IN UPDATE STMT IN MYSQL.ANY ONE PLEASE HELP.   Hi Friend, Visit hereADS_TO_REPLACE_1 Thanks
uisearchbar case sensitive
uisearchbar case sensitive  uisearchbar case sensitive

Ads