Data update
This commit is contained in:
parent
35bcdeebf8
commit
74c69a0df6
2427 changed files with 31826 additions and 3468 deletions
8
Task/Integer-sequence/Java/integer-sequence-3.java
Normal file
8
Task/Integer-sequence/Java/integer-sequence-3.java
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import java.util.stream.LongStream;
|
||||
|
||||
public class Count {
|
||||
public static void main(String[] args) {
|
||||
LongStream.iterate(1, l -> l + 1)
|
||||
.forEach(System.out::println);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue