Silk.NETS
Silk.NET5y ago
Kozi

```cs bool error = false; for (byte i = 0; i < 255; i++) { for (byte j = 0; j < 255; j++) {

bool error = false;
for (byte i = 0; i < 255; i++)
{
    for (byte j = 0; j < 255; j++)
    {
        if (IsGreater(i, j) != i > j)
            error = true;
    }  
}
Was this page helpful?