FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java/Maths/MinValue.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
/
MinValue.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (21 loc) · 653 Bytes
Breadcrumbs
Java
/
Maths
/
MinValue.java
Copy path
File metadata and controls
24 lines (21 loc) · 653 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
package
Maths
;
public
class
MinValue
{
/**
* Returns the smaller of two {@code int} values. That is,
* the result the argument closer to the value of
* {@link Integer#MIN_VALUE}. If the arguments have the same
* value, the result is that same value.
*
* @param a an argument.
* @param b another argument.
* @return the smaller of {@code a} and {@code b}.
*/
public
static
int
min
(
int
a
,
int
b
) {
return
a
<=
b
?
a
:
b
;
}
public
static
void
main
(
String
[]
args
) {
int
a
=
3
;
int
b
=
4
;
System
.
out
.
format
(
"min:%d between %d and %d"
,
min
(
a
,
b
),
a
,
b
);
}
}
Back
|
FazBrowse Home
|
New Git URL