We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47b6725 commit 199fb87Copy full SHA for 199fb87
src/com/codefortomorrow/beginner/chapter2/solutions/ApplesOranges.java
@@ -20,7 +20,7 @@ public static void main(String[] args) {
20
// print out number of oranges using variables, output: "I have 10 oranges." (line 21)
21
System.out.println("I have " + numOranges + " oranges.");
22
23
- // print out number of apples, output: "I have 24 apples." (line 24)
+ // print out number of apples using variables, output: "I have 24 apples." (line 24)
24
System.out.println("I have " + numApples + " apples.");
25
26
}
0 commit comments