This commit is contained in:
Mykola Fesenko
2025-07-29 09:05:07 +02:00
parent ce8e5eb3fe
commit 721931ac60
68 changed files with 608 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
public class VariablenTest{
public static void main(String args[]){
int zaehler = 3;
double zaehlerD = (double) zaehler;
double bruch = zaehler / 3.14;
final double pi = 3.1415;
System.out.print("Zaehler: " + zaehler + ", ZaehlerD: " + zaehlerD);
System.out.println("Bruch: " + bruch + ", Pi: " + pi);
}
}