-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Solution.java
58 lines (55 loc) · 1.78 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
// github.com/RodneyShag
import java.io.*;
import java.lang.reflect.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
// Use a StringBuffer instead of a String since
// concatening Strings is not efficient.
class Add {
void add(int... numbers) {
StringBuffer sb = new StringBuffer();
int sum = 0;
for (int num : numbers) {
sb.append(num + "+");
sum += num;
}
sb.setCharAt(sb.length() - 1, '=');
sb.append(sum);
System.out.println(sb);
}
}
public class Solution {
public static void main(String[] args) {
try {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n1 = Integer.parseInt(br.readLine());
int n2 = Integer.parseInt(br.readLine());
int n3 = Integer.parseInt(br.readLine());
int n4 = Integer.parseInt(br.readLine());
int n5 = Integer.parseInt(br.readLine());
int n6 = Integer.parseInt(br.readLine());
Add ob = new Add();
ob.add(n1,n2);
ob.add(n1,n2,n3);
ob.add(n1,n2,n3,n4,n5);
ob.add(n1,n2,n3,n4,n5,n6);
Method[] methods = Add.class.getDeclaredMethods();
Set<String> set = new HashSet();
boolean overload = false;
for (int i = 0; i < methods.length; i++) {
if (set.contains(methods[i].getName())) {
overload = true;
break;
}
set.add(methods[i].getName());
}
if (overload) {
throw new Exception("Overloading not allowed");
}
} catch(Exception e) {
e.printStackTrace();
}
}
}