1
Answer

I want to know that how this equation is working.

Ask a question
class Program
{
static void Main(string[] args)
{
int x = 4, b = 2;
x -= b /= x * b;
Console.WriteLine(x + " " + b);
Console.ReadLine();
}
}

Answers (1)