FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaProgramming/Recursion/Power.java at patch-1 · subham500071430/JavaProgramming · GitHub
subham500071430
/
JavaProgramming
Public
forked from
karterhhgg/JavaProgramming
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaProgramming
/
Recursion
/
Power.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (32 loc) · 963 Bytes
Breadcrumbs
JavaProgramming
/
Recursion
/
Power.java
Copy path
File metadata and controls
35 lines (32 loc) · 963 Bytes
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
// Print x^n (with stack height = n)
package
Recursion
;
import
java
.
util
.*;
public
class
Power
{
public
static
int
calcPower
(
int
x
,
int
n
) {
if
(
n
==
0
){
// base case1
return
1
;
}
if
(
x
==
0
){
// base case2
return
0
;
}
int
xPownm1
=
calcPower
(
x
,
n
-
1
);
// calculate the x power n-1(x^n-1)
int
xPown
=
x
*
xPownm1
;
// calculate the x power n (x^n)
return
xPown
;
}
public
static
void
main
(
String
[]
args
) {
Scanner
sc
=
new
Scanner
(
System
.
in
);
System
.
out
.
print
(
"Enter the value of x: "
);
int
x
=
sc
.
nextInt
();
System
.
out
.
print
(
"Enter the value of n: "
);
int
n
=
sc
.
nextInt
();
int
ans
=
calcPower
(
x
,
n
);
System
.
out
.
print
(
"Calculated power is: "
);
System
.
out
.
println
(
ans
);
}
}
// output
/*
Enter the value of x: 2
Enter the value of n: 1
Calculated power is: 2
*/
Back
|
FazBrowse Home
|
New Git URL