내가 프로그래밍을 해서 먹고 살 수 있을까
2010-08-19이걸 짜는데 이틀 걸렸다면 믿으시겠습니까? 젠장
private String a(int initial, int max, String leftValue) {
String returnValue = “”;
if (initial < max) {
if (initial != -1) {
if (leftValue != null) {
leftValue += " ";
leftValue += initial;
} else {
leftValue = String.valueOf(initial);
}
}
for (int i = initial + 1; i <= max; i++) {
returnValue += a(i, max, leftValue);
}
return returnValue;
} else {
if (leftValue != null)
leftValue += "n";
else
leftValue = "";
return leftValue;
}
}