-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.java
53 lines (43 loc) · 1.45 KB
/
main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//initiate the class
class main {
public static void main(String args[]){
// code
variables(args);
typeconversion_and_casting(args);
demo(args);
}
public static void variables(String args[]){
String name = "Vignesh";
byte min = Byte.MAX_VALUE;
long a = 1910l;
long max = Long.MIN_VALUE;
System.out.println(max);
long b = a;
float num1 = 5.6f;
System.out.println(num1);
double num = 5.60923823491239;
for(int i=0; i<=10;i++){
// System.out.println(i);
}
char character = 'v';
boolean tf = true;
System.out.println(character);
System.out.println(tf);
System.out.println(name);
System.out.println(num);
System.out.println(min);
System.out.println(b);
}
public static void typeconversion_and_casting(String args[]){
byte small = 127;
int large = 12;
small = (byte)large;
System.out.println("typecasting and conversion");
System.out.println(small);
}
public static void demo(String args[]){
int num1 = 957;
byte k = (byte)num1;
System.out.println(k);
}
}