Grundlagen Variabeln

This commit is contained in:
Sage Burger 2023-08-16 14:52:04 +02:00
parent 7b9db42e45
commit 784ca4113f
2 changed files with 8 additions and 3 deletions

Binary file not shown.

View file

@ -1,6 +1,11 @@
public class Grundlagen { public class Grundlagen {
public static void main(String[] args) public static void main(String[] args) {
{ System.out.println("Hello World");
System.out.println("Test");
int x = 99;
int y = 1;
x = x + 1;
x = x + y;
System.out.println(x);
} }
} }