FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java/Maths/Pow.java at master · java66liu/Java · GitHub
java66liu
/
Java
Public
forked from
TheAlgorithms/Java
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
Java
/
Maths
/
Pow.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (25 loc) · 747 Bytes
Breadcrumbs
Java
/
Maths
/
Pow.java
Copy path
File metadata and controls
27 lines (25 loc) · 747 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
package
Maths
;
//POWER (exponentials) Examples (a^b)
public
class
Pow
{
public
static
void
main
(
String
[]
args
) {
assert
pow
(
2
,
0
) ==
Math
.
pow
(
2
,
0
);
// == 1
assert
pow
(
0
,
2
) ==
Math
.
pow
(
0
,
2
);
// == 0
assert
pow
(
2
,
10
) ==
Math
.
pow
(
2
,
10
);
// == 1024
assert
pow
(
10
,
2
) ==
Math
.
pow
(
10
,
2
);
// == 100
}
/**
* Returns the value of the first argument raised to the power of the
* second argument
*
* @param a the base.
* @param b the exponent.
* @return the value {@code a}<sup>{@code b}</sup>.
*/
public
static
long
pow
(
int
a
,
int
b
) {
long
result
=
1
;
for
(
int
i
=
1
;
i
<=
b
;
i
++) {
result
*=
a
;
}
return
result
;
}
}
Back
|
FazBrowse Home
|
New Git URL