C # And logical "And" Operation example

Source: Internet
Author: User

C # And logic "And" Operation example, declare two integer variables And a bool type variable, then perform the corresponding logical "And" operation, And output the result, what should I know when I start C #'s logic judgment:

View sourceprint? 01 using System;

02 using System. Collections. Generic;

03 using System. Linq;

04 using System. Text;

05 namespace LogicAnd

06 {

07 class Program

08 {

09 static void Main (string [] args)

10 {

11 int intNum1 = 100; // declare an integer variable intNum1

12 int intNum2 = 200; // declare an integer variable intNum2

13 bool blResult; // declare a bool type variable blResult

14 blResult = (intNum1> 50) & (intNum2 <100); // obtain the return value after the logical "and" Operation

15 Console. WriteLine ("Calculation Result:" + blResult); // output result

16 Console. ReadLine ();

17}

18}

19}

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.