If Else and switch case

Source: Internet
Author: User

If Elese recommended use interval judgment

bool A = true;

Double salay = 5000;

Console.WriteLine ("Please enter the year-end rating for John Doe");

String level = Console.ReadLine ();

if (level== "A") {

Salay + = 500;

}else if (level== "B") {

Salay + = 200;

}else if (level== "C") {

}else if (level== "D") {

Salay-= 200;

}else if (level== "E") {

salay-=500;

//}

Else

//{

Console.WriteLine ("Input error, please re-enter");

A = false;

//}

if (a) {

Console.WriteLine ("John Doe next year's salary is {0}", Salay);

//}

Console.readkey ();

/*

Switch (the value of a variable or an expression) {

Case value 1: the code to execute;

Break

Case Value 2: the code to execute;

Break

Case Value 3: the code to execute;

Break

....................

Default: The code to execute;

Break

}

*/

Case recommendation using fixed value judgment

BOOL B = true;

Double salay = 5000;

Console.WriteLine ("Please enter the year-end rating for John Doe");

String level = Console.ReadLine ();

Switch (level) {

Case "A": Salay + = 500;

Break

Case "B": salay + = 200;

Break

Case ' C ': break;

Case "D": salay-= 200;

Break

Case "E": salay-= 500;

Break

Default:Console.WriteLine ("You entered the wrong, please re-enter");

b = false;

Break

}

if (b) {

Console.WriteLine ("John Doe next year's salary is {0}", Salay);

}

Console.readkey ();

If Else and switch case

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.