[C Language] -- tips for pairing case and break under Switch

Source: Internet
Author: User

In the C trap and defects, we can see that there is a small trick when the switch statement is used to implement the four arithmetic operations of two numbers. As we all know, break must be added after the case statement, which is worth noting. See the followingCode:

1: subtraction; 2: addition; 3: Division; 4: Multiplication

Switch (FLAG)

{

Case 1: y =-y; // There is no break here;

Case 2: z = x + y; break;

Case 3: y = 1/y; // There is no break here; assume that 1/Y is a score;

Case 4: z = x * Y; break;

}

However, this can also implement the four arithmetic operations of two numbers.

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.