We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4126521 commit ad980acCopy full SHA for ad980ac
1 file changed
src/effectivejava/chapter9/item60/Change.java
@@ -9,7 +9,7 @@ public static void main(String[] args) {
9
funds -= price;
10
itemsBought++;
11
}
12
- System.out.println(itemsBought + " items bought.");
13
- System.out.println("Change: $" + funds);
+ System.out.println(itemsBought + "개 구입");
+ System.out.println("잔돈(달러): " + funds);
14
15
0 commit comments