24 lines
206 B
Plaintext
24 lines
206 B
Plaintext
|
|
int x = 5;
|
||
|
|
int y = 10;
|
||
|
|
x
|
||
|
|
y
|
||
|
|
x + y
|
||
|
|
x * y
|
||
|
|
x - y
|
||
|
|
x / y
|
||
|
|
x % y
|
||
|
|
long big = 1000000000;
|
||
|
|
big
|
||
|
|
double pi = 3.14159;
|
||
|
|
pi
|
||
|
|
float f = 2.5;
|
||
|
|
f
|
||
|
|
boolean flag = true;
|
||
|
|
flag
|
||
|
|
char c = 'A';
|
||
|
|
c
|
||
|
|
String name = "Rava";
|
||
|
|
name
|
||
|
|
%whos
|
||
|
|
%quit
|