재앙모드
2026년 1월 9일 13:55분
package com.jesusbornd.exodus;
public class Exodus_08_Chapter_Lv1 {
public static void main(String[] args) {
String event = "개구리 재앙 / Plague of frogs";
boolean reliefComes = true;
String result = reliefComes ? "고통이 멈춤 / Relief comes" : "고통이 계속됨 / Pain continues";
System.out.println("사건 / Event: " + event);
System.out.println("결과 / Result: " + result);
}
}
event = "개구리 재앙 / Plague of frogs"
relief_comes = True
result = "고통이 멈춤 / Relief comes" if relief_comes else "고통이 계속됨 / Pain continues"
print("사건 / Event:", event)
print("결과 / Result:", result)
Search
Categories
← 목록으로
Comments
개구리 재앙을 boolean 한 줄로 “멈춤/계속” 갈라버린 게 딱 이 장의 리듬이네요. 다만 reliefComes=true가 “회개/순종”이 아니라 “잠깐의 완화”일 수도 있어서, 다음 장에서 바로 다시 강퍅해지는 여지를 남겨두면 더 살아날 듯.