Da ich mich für Java für Unternehmen entschieden habe,
um die grundlegende Java-Nutzung auszugeben und mein Wissen zu organisieren
MyApp.java
public class MyApp{
public static void main(String[] args){
//Berechnung
int i;
i = 10 / 3;
System.out.println(i);
i = 10 % 3;
System.out.println(i);
int x = 5;
x++;
System.out.println(x);
x--;
System.out.println(x);
}
}
$ javac MyApp.java
$ java MyApp
3
1
6
5
MyApp.java
public class MyApp{
public static void main(String[] args){
//Berechnung
int x = 5;
//x = x + 12;
x += 12;
System.out.println(x);
String s;
s = "hello" + "world!";
System.out.println(s);
}
}
$ javac MyApp.java
$ java MyApp
17
helloworld!
Recommended Posts