Upload files to "Aufgaben/PTP_1"

This commit is contained in:
2025-07-29 08:26:05 +02:00
parent 2bb8a136ee
commit ac95b23213
5 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
public class Variablen{
public static void main(String args[]){
int zahl = 3;
double zahlD = (double) zahl;
System.out.println("Int: " + zahl + ", Double: " + zahlD);
}
}