cs11dotnet7/vscode/Chapter03/Ch03Ex05Operators/Program.cs

24 lines
392 B
C#
Raw Normal View History

2022-02-18 13:13:25 +01:00
WriteLine("int x = 3;");
WriteLine("int y = 2 + ++x;");
int x = 3;
int y = 2 + ++x;
WriteLine($"x = {x} and y = {y}");
WriteLine();
WriteLine("x = 3 << 2;");
WriteLine("y = 10 >> 1;");
x = 3 << 2;
y = 10 >> 1; ;
WriteLine($"x = {x} and y = {y}");
WriteLine();
WriteLine("x = 10 & 8;");
WriteLine("y = 10 | 7;");
x = 10 & 8;
y = 10 | 7;
WriteLine($"x = {x} and y = {y}");
WriteLine();