files added

This commit is contained in:
2020-10-30 17:59:18 +01:00
parent 47b69ca811
commit 3edae31699
47 changed files with 439 additions and 0 deletions
Binary file not shown.
+21
View File
@@ -0,0 +1,21 @@
public class Variablen{
public static void main(String[]args){
byte bVar1 = 5;
short sVar1 = 400;
int iVar1 = -35676;
long lVar1 = 100000000L;
float fVar1 = 0.123f;
double dVar1 = 0.123;
boolean istPrim1 = false;
char cVar1 = 'x';
System.out.println();
System.out.println(bVar1);
System.out.println(sVar1);
System.out.println(iVar1);
System.out.println(lVar1);
System.out.println(fVar1);
System.out.println(dVar1);
System.out.println(cVar1);
System.out.println(istPrim1);
}
}