Grundlagen Variabeln
This commit is contained in:
parent
7b9db42e45
commit
784ca4113f
2 changed files with 8 additions and 3 deletions
Binary file not shown.
|
@ -1,6 +1,11 @@
|
|||
public class Grundlagen {
|
||||
public static void main(String[] args)
|
||||
{
|
||||
System.out.println("Test");
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello World");
|
||||
|
||||
int x = 99;
|
||||
int y = 1;
|
||||
x = x + 1;
|
||||
x = x + y;
|
||||
System.out.println(x);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue