FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaProgramming/HackerRank/Sixty.java at main · karterhhgg/JavaProgramming · GitHub
karterhhgg
/
JavaProgramming
Public
Notifications
You must be signed in to change notification settings
Fork
8
Star
1
Code
Pull requests
6
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaProgramming
/
HackerRank
/
Sixty.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
74 lines (64 loc) · 1.77 KB
Breadcrumbs
JavaProgramming
/
HackerRank
/
Sixty.java
Copy path
File metadata and controls
74 lines (64 loc) · 1.77 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
package
HackerRank
;
import
java
.
io
.*;
import
java
.
lang
.
reflect
.*;
import
java
.
util
.*;
import
java
.
text
.*;
import
java
.
math
.*;
import
java
.
util
.
regex
.*;
//Write your code here
class
Add
{
// Method for 2 integers
void
add
(
int
a
,
int
b
) {
System
.
out
.
println
(
a
+
"+"
+
b
+
"="
+ (
a
+
b
));
}
// Method for 3 integers
void
add
(
int
a
,
int
b
,
int
c
) {
System
.
out
.
println
(
a
+
"+"
+
b
+
"+"
+
c
+
"="
+ (
a
+
b
+
c
));
}
// Method for 5 integers
void
add
(
int
a
,
int
b
,
int
c
,
int
d
,
int
e
) {
System
.
out
.
println
(
a
+
"+"
+
b
+
"+"
+
c
+
"+"
+
d
+
"+"
+
e
+
"="
+ (
a
+
b
+
c
+
d
+
e
));
}
// Method for 6 integers
void
add
(
int
a
,
int
b
,
int
c
,
int
d
,
int
e
,
int
f
) {
System
.
out
.
println
(
a
+
"+"
+
b
+
"+"
+
c
+
"+"
+
d
+
"+"
+
e
+
"+"
+
f
+
"="
+ (
a
+
b
+
c
+
d
+
e
+
f
));
}
}
public
class
Sixty
{
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
();
}
}
}
Back
|
FazBrowse Home
|
New Git URL