一、C#关系运算符
C#语言的关系运算符是对操作数的比较运算。
二、示例
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
// C#关系运算符-www.baike369.com
int x = 15, y = 5;
Console.WriteLine("小于运算符:" + (x < y));
Console.WriteLine("大于运算符:" + (x > y));
Console.WriteLine("小于或等于运算符:" + (x <= y));
Console.WriteLine("大于或等于运算符:" + (x >= y));
Console.WriteLine("等于运算符:" + (x == y));
Console.WriteLine("不等于运算符:" + (x != y));
Console.ReadLine();
}
}
}
运行结果:
小于运算符:False
大于运算符:True
小于或等于运算符:False
大于或等于运算符:True
等于运算符:False
不等于运算符:True
时间: 2024-11-09 10:21:12