-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.java
More file actions
27 lines (24 loc) · 680 Bytes
/
Copy pathmain.java
File metadata and controls
27 lines (24 loc) · 680 Bytes
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
public class main {
public static void main(String[] args) {
// int width = 5;
// int length = 5;
// int area;
// area = width * length;
byte bitensor = 100;
short small = 4000;
long large = 15000000L;
int mid = 2500;
float deci = 12.5f;
double twod = 55.55;
boolean agi = true;
char abs = 'B';
System.out.println(bitensor);
System.out.println(small);
System.out.println(large);
System.out.println(mid);
System.out.println(deci);
System.out.println(twod);
System.out.println(agi);
System.out.println(abs);
}
}