Skip to content

Commit

Permalink
Possible correction to Challenge 2 (#62)
Browse files Browse the repository at this point in the history
Challenge 1 and 2 are exactly the same. I assume the goal of Challenge 2 was to test subtraction.
  • Loading branch information
erikweibust authored Dec 17, 2024
1 parent d0e19ae commit c58dc37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/floating_point_numbers/challenges.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ What will this program output when run? Write down your guess and then try runni
void main() {
double x = 5.1;
double y = 2.1;
System.out.println(x + y);
System.out.println(x - y);
}
```

Expand Down

0 comments on commit c58dc37

Please sign in to comment.