c 运算符##_C#程序演示关系运算符的示例
c 運算符##
Relational operators are used to compare the values and returns Boolean values, if condition is true – they return True, otherwise they return False.
關系運算符用于比較值并返回布爾值(如果condition為true)-它們返回True ,否則返回False 。
Here is the list of relation operators,
這是關系運算符的列表,
"==" (Equal To) – it returns true, if both operand’s values are equal
“ ==”(等于) –如果兩個操作數的值相等,則返回true
"!=" (Not Equal To) – it returns true, if both operand’s values are not equal
“!=”(不等于) –如果兩個操作數的值都不相等,則返回true
" – it returns true if first, operand is less than second operand
“ –如果第一個操作數小于第二個操作數,則返回true
"<=" (Less Than or Equal To) – it returns true, if either first operand is less than or equal to second operand
“ <=”(小于或等于) –如果第一個操作數小于或等于第二個操作數,則返回true
">" (Greater Than) – it returns true, if first operand is greater than second operand
“>”(大于) –如果第一個操作數大于第二個操作數,則返回true
">=" (Greater Than or Equal To) – it returns true, if either first operand is greater than or equal to second operand
“> =”(大于或等于) –如果第一個操作數大于或等于第二個操作數,則返回true
Syntax:
句法:
Operand1 == Operand2Operand1 != Operand2Operand1 < Operand2Operand1 <= Operand2Operand1 > Operand2Operand1 >= Operand2Example:
例:
Input:int a = 10;int b = 3;Console.WriteLine("a==b: {0}", (a == b));Console.WriteLine("a!=b: {0}", (a != b));Console.WriteLine("a>b : {0}", (a > b));Console.WriteLine("a>=b: {0}", (a >= b));Console.WriteLine("a<b : {0}", (a < b));Console.WriteLine("a<=b: {0}", (a <= b));Output:a==b: Falsea!=b: Truea>b : Truea>=b: Truea<b : Falsea<=b: FalseC# code to demonstrate example of relational operators
C#代碼演示關系運算符的示例
// C# program to demonstrate example of // relational operators using System; using System.IO; using System.Text;namespace IncludeHelp {class Test{// Main Method static void Main(string[] args){int a = 10;int b = 3;//printing return typeConsole.WriteLine("Return type of == operator: {0}", (a == b).GetType());Console.WriteLine("Return type of != operator: {0}", (a != b).GetType());Console.WriteLine("Return type of > operator : {0}", (a > b).GetType());Console.WriteLine("Return type of >= operator: {0}", (a >= b).GetType());Console.WriteLine("Return type of < operator : {0}", (a < b).GetType());Console.WriteLine("Return type of <= operator: {0}", (a <= b).GetType());//printing return valuesConsole.WriteLine("a==b: {0}", (a == b));Console.WriteLine("a!=b: {0}", (a != b));Console.WriteLine("a>b : {0}", (a > b));Console.WriteLine("a>=b: {0}", (a >= b));Console.WriteLine("a<b : {0}", (a < b));Console.WriteLine("a<=b: {0}", (a <= b));//checking conditionsif (a == b)Console.WriteLine("a is equal to b");elseConsole.WriteLine("a is not equal to b");if (a != b)Console.WriteLine("a is not equal to b");elseConsole.WriteLine("a is equal to b");if (a > b)Console.WriteLine("a is greater than b");elseConsole.WriteLine("a is not greater than b");if (a >= b)Console.WriteLine("a is greater than or equal to b");elseConsole.WriteLine("a is not greater than or equal to b");if (a < b)Console.WriteLine("a is less than b");elseConsole.WriteLine("a is not less than b");if (a <= b)Console.WriteLine("a is less than or equal to b");elseConsole.WriteLine("a is not less than or equal to b");//checking conditions in another wayif ((a == b) == true)Console.WriteLine("a is equal to b");elseConsole.WriteLine("a is not equal to b");if ((a != b) == true)Console.WriteLine("a is not equal to b");elseConsole.WriteLine("a is equal to b");if ((a > b) == true)Console.WriteLine("a is greater than b");elseConsole.WriteLine("a is not greater than b");if ((a >= b) == true)Console.WriteLine("a is greater than or equal to b");elseConsole.WriteLine("a is not greater than or equal to b");if ((a < b) == true)Console.WriteLine("a is less than b");elseConsole.WriteLine("a is not less than b");if ((a <= b) == true)Console.WriteLine("a is less than or equal to b");elseConsole.WriteLine("a is not less than or equal to b");//hit ENTER to exit the programConsole.ReadLine();}} }Output
輸出量
Return type of == operator: System.Boolean Return type of != operator: System.Boolean Return type of > operator : System.Boolean Return type of >= operator: System.Boolean Return type of < operator : System.Boolean Return type of <= operator: System.Boolean a==b: False a!=b: True a>b : True a>=b: True a<b : False a<=b: False a is not equal to b a is not equal to b a is greater than b a is greater than or equal to b a is not less than b a is not less than or equal to b a is not equal to b a is not equal to b a is greater than b a is greater than or equal to b a is not less than b a is not less than or equal to b翻譯自: https://www.includehelp.com/dot-net/relational-operators-example-in-c-sharp.aspx
c 運算符##
總結
以上是生活随笔為你收集整理的c 运算符##_C#程序演示关系运算符的示例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: np.copysign_带有Python
- 下一篇: 春节抽空读了8本书,只有这本书我1字不落