peace software
  Berndt Wischnewski  Richard-Wagner-Str. 49  10585 Berlin 
  Tel.: 030 - 3429075  FAX : 030 34704037  email: webmaster@peacesoftware.de 

<= Previous
Inhalt
Next =>

Test 18

Sie haben folgendes wunderbar geschachtelte if Abfrage vor sich:

int x, y, z, result = -9999;

x = 0;
y = 1;
z = 42;

if(x)
{
  if(z && y)
    result = 1;
  else
    result = 2;
}
else
{
  if(  (x && y) ||
      ( x && z) )
  {
    result = 3;
  }
  else
    result = 4;

}

Welchen Wert hat result am Ende ?
<= Previous
Inhalt
Next =>