summaryrefslogtreecommitdiff
path: root/java/Introduction
diff options
context:
space:
mode:
authorkittobi1992 <kittobi1992@users.noreply.github.com>2014-11-25 10:08:11 +0100
committerkittobi1992 <kittobi1992@users.noreply.github.com>2014-11-25 10:08:11 +0100
commitd6cdd5a630cf361940e1abdb2a0b4d8695ea9553 (patch)
tree5345b4ab76141b02c61ee187aad9350527ede5e0 /java/Introduction
parente72612b15a9858ed30c6ad5a890c542c1f25a482 (diff)
changing name
Diffstat (limited to 'java/Introduction')
-rw-r--r--java/Introduction12
1 files changed, 0 insertions, 12 deletions
diff --git a/java/Introduction b/java/Introduction
deleted file mode 100644
index d3b6cd9..0000000
--- a/java/Introduction
+++ /dev/null
@@ -1,12 +0,0 @@
-\subsection{Introduction}
-
-\begin{enumerate}
-\item Compilen: \\ javac main.java
-\item Ausführen: \\ java main < sample.in
-\item Einlesen: \\
-Scanner in = new Scanner(System.in); \\
-String line = in.nextLine(); (reads the next line of the input)\\
-int num = in.nextInt(); (reads the next token of the input as an int)\\
-double num2 = in.nextDouble(); (reads the next token of the input as a double)\\
-usw. \dot (think on your own what comes next) \\
-\ende{enumerate}