📜  c#代码示例中的逻辑运算符

📅  最后修改于: 2022-03-11 14:49:05.942000             🧑  作者: Mango

代码示例3
int x=15, y=5;
Console.WriteLine("----- Logic Operators -----");
Console.WriteLine(x > 10 || 100 > x);