Write a program that receives a number and displays dependent information based on user input. The switch statement is required, for example, 1, 2, 3, display, Monday, Tuesday, and Wednesday,

Source: Internet
Author: User

Write a program that receives a number and displays dependent information based on user input. The switch statement is required, for example, 1, 2, 3, display, Monday, Tuesday, and Wednesday,

// Author: Janushu // Date: 2017/9/20/* function: write a program that can receive a number and display dependent information based on user input, the switch statement is required. For example, 1 2 3 shows Monday, Tuesday, and so on */import java. io. *; public class SwitchWeek {public static void main (String [] args) {try {// store an input number BufferedReader br = new BufferedReader (new InputStreamReader (System. in); System. out. println ("Enter the corresponding number:"); // convert the data in a row to an int num = Integer. parseInt (br. readLine (); switch (num) {case 1: System. out. println ("Monday"); break; case 2: System. out. println ("Tuesday"); break; case 3: System. out. println ("Wednesday"); break; case 4: System. out. println ("Thursday"); break; case 5: System. out. println ("Friday"); break; case 6: System. out. println ("Saturday"); break; case 7: System. out. println ("Sunday"); break; default: System. out. println ("incorrect input");} catch (Exception e) {e. printStackTrace ();}}}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.