diff options
author | Sean Nam <namsangwoo1@gmail.com> | 2017-03-12 15:26:04 -0700 |
---|---|---|
committer | Sean Nam <namsangwoo1@gmail.com> | 2017-03-12 15:26:04 -0700 |
commit | 2c2c6e7b15b2dc248ff5c397e235f5c94823c567 (patch) | |
tree | c3ff2eb48f315da7330b107771839abdc9d3ea3c /java.html.markdown | |
parent | 13663f3726c39639b23615b9f963ca4b30650408 (diff) |
Fixed indentation in the java file
Diffstat (limited to 'java.html.markdown')
-rw-r--r-- | java.html.markdown | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java.html.markdown b/java.html.markdown index f28e953a..a7060317 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -56,9 +56,9 @@ public class LearnJava { // Input/Output /////////////////////////////////////// - /* - * Ouput - */ + /* + * Ouput + */ // Use System.out.println() to print lines. System.out.println("Hello World!"); @@ -75,8 +75,8 @@ public class LearnJava { System.out.printf("pi = %.5f", Math.PI); // => pi = 3.14159 /* - * Input - */ + * Input + */ // use Scanner to read input // must import java.util.Scanner; |