return
return code>는 매개변수 값이 반복되는 기본 사례에서 하강을 종료하는 데 사용됩니다. 예를 들어 숫자를 10진수에서 2진수로 변환하는 절차는 다음과 같습니다. 정적 void printTwo(int n) { if (n == 0) 반환; printTwo(n / 2); if (n % 2 == 0) Console.Write(0); 그렇지 않으면 Console.Write(1); }
N
1000 ms 256 Mb Rules for program design and list of errors in automatic problem checking