16 lines
322 B
Java
16 lines
322 B
Java
|
// streams/SelectElement.java
|
||
|
import java.util.*;
|
||
|
import java.util.stream.*;
|
||
|
import static streams.RandInts.*;
|
||
|
|
||
|
public class SelectElement {
|
||
|
public static void main(String[] args) {
|
||
|
System.out.println(rands().findFirst().getAsInt());
|
||
|
System.out.println(rands().findAny().getAsInt());
|
||
|
}
|
||
|
}
|
||
|
/* Output:
|
||
|
258
|
||
|
258
|
||
|
*/
|