Skip to content

Commit 199fb87

Browse files
armeetjphrdang
andauthored
Update src/com/codefortomorrow/beginner/chapter2/solutions/ApplesOranges.java
Co-authored-by: Rebecca Dang <[email protected]>
1 parent 47b6725 commit 199fb87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/codefortomorrow/beginner/chapter2/solutions/ApplesOranges.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static void main(String[] args) {
2020
// print out number of oranges using variables, output: "I have 10 oranges." (line 21)
2121
System.out.println("I have " + numOranges + " oranges.");
2222

23-
// print out number of apples, output: "I have 24 apples." (line 24)
23+
// print out number of apples using variables, output: "I have 24 apples." (line 24)
2424
System.out.println("I have " + numApples + " apples.");
2525

2626
}

0 commit comments

Comments
 (0)