28 lines
266 B
C#
28 lines
266 B
C#
|
using System;
|
||
|
|
||
|
class X
|
||
|
{
|
||
|
public static int Test (int x)
|
||
|
{
|
||
|
for (;;) {
|
||
|
if (x != 1)
|
||
|
x--;
|
||
|
else
|
||
|
break;
|
||
|
return 5;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public static int Main ()
|
||
|
{
|
||
|
if (Test (1) != 0)
|
||
|
return 1;
|
||
|
|
||
|
if (Test (2) != 5)
|
||
|
return 2;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
}
|