溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

七、運(yùn)算符之關(guān)系運(yùn)算符

發(fā)布時(shí)間:2020-08-02 13:00:10 來源:網(wǎng)絡(luò) 閱讀:499 作者:vik_xiao 欄目:編程語言
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _7.運(yùn)算符之關(guān)系運(yùn)算符
{
    class Program
    {
        static void Main(string[] args)
        {
            // 關(guān)系運(yùn)算符也稱布爾比較運(yùn)算符
            int a = 21, b = 10;
            
            // 小于(<)和小于等于(<=)
            Console.WriteLine("{0} < {1} = {2}", a, b, a < b);
            Console.WriteLine("{0} <= {1} = {2}", a, b, a <= b);
            
            // 大于(>)和大于等于(>=)
            Console.WriteLine("{0} > {1} = {2}", a, b, a > b);
            Console.WriteLine("{0} >= {1} = {2}", a, b, a >= b);
            
            // 不等于(!=)和等于(==)
            Console.WriteLine("{0} != {1} = {2}", a, b, a != b);
            Console.WriteLine("{0} == {1} = {2}", a, b, a == b);
            
            // !=和==也可應(yīng)用于字符串的比較
            string str1 = "hello", str2 = "Hello";
            Console.WriteLine("\"{0}\" != \"{1}\" = {2}", str1, str2, str1 != str2);
            Console.WriteLine("\"{0}\" == \"{1}\" = {2}", str1, str2, str1 == str2);
            
            // !=和==也可應(yīng)用于Bool類型的比較
            bool bool1 = true, bool2 = false;
            Console.WriteLine("{0} != {1} = {2}", bool1, bool2, bool1 != bool2);
            Console.WriteLine("{0} == {1} = {2}", bool1, bool2, bool1 == bool2);
            
            Console.ReadKey();
        }
    }
}

/**
 * <(小于)        檢查左操作數(shù)的值是否小于右操作數(shù)的值,如果是則條件為真。
 * <=(小于等于)   檢查左操作數(shù)的值是否小于或等于右操作數(shù)的值,如果是則條件為真。
 * >(大于)        檢查左操作數(shù)的值是否大于右操作數(shù)的值,如果是則條件為真。
 * >=(大于等于)   檢查左操作數(shù)的值是否大于或等于右操作數(shù)的值,如果是則條件為真。
 * !=(不等于)     檢查兩個(gè)操作數(shù)的值是否相等,如果不相等則條件為真。
 * ==(等于)       檢查兩個(gè)操作數(shù)的值是否相等,如果相等則條件為真。
 * 
 */


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI