summaryrefslogtreecommitdiff
path: root/java/Introduction.tex
diff options
context:
space:
mode:
authorPaul Jungeblut <s_jungeb@i08pc56.atis-stud.uni-karlsruhe.de>2014-11-25 11:37:28 +0100
committerPaul Jungeblut <s_jungeb@i08pc56.atis-stud.uni-karlsruhe.de>2014-11-25 11:37:28 +0100
commit7113e0921ad8c1592280ffee9445fab29e66fb7f (patch)
treeaae7af9617fa150d7bd75dbfeeea4a7a05845525 /java/Introduction.tex
parent584bf7d1f9b476a09a011a33c0768cc7e03bc8e6 (diff)
Was passiert, wenn wir Java begegnen
Diffstat (limited to 'java/Introduction.tex')
-rw-r--r--java/Introduction.tex12
1 files changed, 0 insertions, 12 deletions
diff --git a/java/Introduction.tex b/java/Introduction.tex
deleted file mode 100644
index d3b6cd9..0000000
--- a/java/Introduction.tex
+++ /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}