29 lines
584 B
Java
29 lines
584 B
Java
// control/ForInFloat.java
|
|
// (c)2020 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://OnJava8.com for more book information.
|
|
import java.util.*;
|
|
|
|
public class ForInFloat {
|
|
public static void main(String[] args) {
|
|
Random rand = new Random(47);
|
|
float[] f = new float[10];
|
|
for(int i = 0; i < 10; i++)
|
|
f[i] = rand.nextFloat();
|
|
for(float x : f)
|
|
System.out.println(x);
|
|
}
|
|
}
|
|
/* Output:
|
|
0.72711575
|
|
0.39982635
|
|
0.5309454
|
|
0.0534122
|
|
0.16020656
|
|
0.57799757
|
|
0.18847865
|
|
0.4170137
|
|
0.51660204
|
|
0.73734957
|
|
*/
|