Code
using System;
namespace _02_11
{
class Class_02_11
{
public static void Main(String[] args)
{
bool x;
int y = 10, z = 3;
x = (y == z);
Console.WriteLine("x = {0}", x);
x = (y != z);
Console.WriteLine("x = {0}", x);
x = (y > z);
Console.WriteLine("x = {0}", x);
x = (y < z * 4);
Console.WriteLine("x = {0}", x);
x = (y >= z * 3);
Console.WriteLine("x = {0}", x);
x = (y <= z + 7);
Console.WriteLine("x = {0}", x);
}
}
}
using System;
namespace _02_11
{
class Class_02_11
{
public static void Main(String[] args)
{
bool x;
int y = 10, z = 3;
x = (y == z);
Console.WriteLine("x = {0}", x);
x = (y != z);
Console.WriteLine("x = {0}", x);
x = (y > z);
Console.WriteLine("x = {0}", x);
x = (y < z * 4);
Console.WriteLine("x = {0}", x);
x = (y >= z * 3);
Console.WriteLine("x = {0}", x);
x = (y <= z + 7);
Console.WriteLine("x = {0}", x);
}
}
}