1

我想将 Rubber 用于我正在制作的应用程序。有没有办法在不实际在 ec2 上创建实例的情况下进行相同的试运行?

4

1 回答 1

0
Byte x, y, z;
            x = 255;
            y = 3;
            z = (Byte)(x << y); Console.WriteLine(z);

            z = (Byte)(x >> y);
            Console.WriteLine(z);

            z = (byte)(x & y);
            
Console.WriteLine(z); z = (byte)(x | y); Console.WriteLine(z);

Boolean b = true;
Console.WriteLine(Convert.ToInt16 (b));
于 2021-01-19T13:00:55.730 回答