-
Notifications
You must be signed in to change notification settings - Fork 0
/
Solution.java
90 lines (70 loc) · 1.85 KB
/
Solution.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
int result = dataTypes(str.toLowerCase());
System.out.println(result);
sc.close();
}
public static int dataTypes(String type) {
if (type.equals("integer")) {
return 4;
} else if (type.equals("long")) {
return 8;
} else if (type.equals("float")) {
return 4;
} else if (type.equals("double")) {
return 8;
} else if (type.equals("character")) {
return 1;
} else {
return -1;
}
}
}
// public class Dtypes {
// public static void main(String[] args) {
// Scanner sc = new Scanner(System.in);
// String str = sc.nextLine();
// int result = dataTypes(str.charAt(0));
// System.out.println(result);
// }
// public static int dataTypes(char ch) {
// if (ch == 'I' || ch == 'i') {
// return 4;
// } else if (ch == 'L' || ch == 'l') {
// return 8;
// } else if (ch == 'F' || ch == 'f') {
// return 4;
// } else if (ch == 'D' || ch == 'd') {
// return 8;
// } else if (ch == 'C' || ch == 'C') {
// return 1;
// } else {
// return -1;
// }
// }
// import java.util.Scanner;
// public class Solution {
// public static int main(String[] args) {
// Scanner sc = new Scanner(System.in);
// String str = sc.nextLine();
// int ch = str.charAt(0);
// if (ch == 'I' || ch == 'i')
// {
// System.out.println("4");
// } else if (ch == 'L' || ch == 'l') {
// System.out.println("8");
// } else if (ch == 'F' || ch == 'f') {
// System.out.println("8");
// } else if (ch == 'D' || ch == 'd') {
// System.out.println("8");
// } else if (ch == 'C' || ch == 'C') {
// System.out.println("1");
// } else {
// System.out.println("-1");
// }
// return ch;
// }
// }