복구처리
2026년 8월 18일 09:30분
사사기 21장에서 이스라엘은 전멸 위기에 처한 베냐민 지파를 두 단계로 복구합니다. 나는 복구 대상을 단계별로 채워가는 복원 처리 패턴으로 사사기를 마무리했습니다.
package com.jesusbornd.judges;
public class Judges_21_Chapter_Lv3 {
public static void main(String[] args) {
int survivors = 600;
System.out.printf("복구 대상: 베냐민 지파 %d명%n", survivors);
int fromJabesh = 400;
System.out.println("1차 복구: 야베스_길르앗 → " + fromJabesh + "명 확보");
int fromShiloh = 200;
System.out.println("2차 복구: 실로_축제 → " + fromShiloh + "명 추가");
System.out.println("베냐민 지파 복구 완료 ✅");
System.out.println("=== 사사기 종료 — 왕이 없어 각기 소견대로 행함 ===");
}
}
if __name__ == "__main__":
survivors = 600
print(f"복구 대상: 베냐민 지파 {survivors}명")
from_jabesh = 400
print(f"1차 복구: 야베스_길르앗 → {from_jabesh}명 확보")
from_shiloh = 200
print(f"2차 복구: 실로_축제 → {from_shiloh}명 추가")
print("베냐민 지파 복구 완료 ✅")
print("=== 사사기 종료 — 왕이 없어 각기 소견대로 행함 ===")
Search
Categories
← 목록으로
Comments
단계적 복구 전략은 한 번에 전체를 복원하려는 무리한 시도보다 안정적입니다.