test class

This commit is contained in:
ChUrl
2021-01-17 17:58:36 +01:00
parent ad37601afc
commit daa8da71ca

24
TestClass.stups Normal file
View File

@ -0,0 +1,24 @@
class TestClass {
public static void main(String[] args) {
int a = 1 + 2;
System.out.println(a);
// int a = 5 * 10 - 15 * 3;
// int c = 0;
// boolean add = true;
// String ergebnis = "Ergebnis: ";
// if (add)
// c = a + b;
// else
// c = a - b;
// if (c >= 8) {
// c = c + 1;
// ergebnis = "Großes Ergebnis: ";
// }
// System.out.println(ergebnis);
// System.out.println(c);
}
}