FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java/Maths/MinValue.java at master · rcfgnu/Java · GitHub
rcfgnu
/
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
32 lines (27 loc) · 833 Bytes
Breadcrumbs
Java
/
Maths
/
MinValue.java
Copy path
File metadata and controls
32 lines (27 loc) · 833 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
package
Maths
;
import
java
.
util
.
Random
;
public
class
MinValue
{
/** Driver Code */
public
static
void
main
(
String
[]
args
) {
Random
rand
=
new
Random
();
/* test 100 times using rand numbers */
for
(
int
i
=
1
;
i
<=
100
; ++
i
) {
/* generate number from -50 to 49 */
int
a
=
rand
.
nextInt
(
100
) -
50
;
int
b
=
rand
.
nextInt
(
100
) -
50
;
assert
min
(
a
,
b
) ==
Math
.
min
(
a
,
b
);
}
}
/**
* 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
;
}
}
Back
|
FazBrowse Home
|
New Git URL