Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion book_source/source/variables_expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ Java has no operator for exponentiation (e.g., $3^2$). Instead, you have to use
public class Expressions {
public static void main(String[] args) {
int x = 3;
int y = Math.pow(x, 2);
double y = Math.pow(x, 2);
}
}
```
Expand Down
Loading