Add Java-Kompendium book

This commit is contained in:
2025-11-24 23:20:51 +01:00
parent f3b3d4b1a2
commit a680b83e47
8 changed files with 122 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
public class Task1 {
public static void main(String[] args) {
int x;
short y = 8;
long z;
x = y;
z = y;
}
}

View File

@@ -0,0 +1,15 @@
import java.io.*;
public class Task2 {
public static void main(String[] args) throws IOException {
System.out.print("Geben Sie eine Zahl ein: ");
var inputStream = new InputStreamReader(System.in);
var bufferedStream = new BufferedReader(inputStream);
String variable = bufferedStream.readLine();
int converted = Integer.parseInt(variable);
System.out.println("Der doppelte Wert ist: " + (converted * 2));
}
}