fork(5) download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6. import java.util.stream.*;
  7.  
  8. /* Name of the class has to be "Main" only if the class is public. */
  9. class Ideone
  10. {
  11. public static void main (String[] args) throws java.lang.Exception
  12. {
  13. int[] data = IntStream
  14. .generate(() -> 123)
  15. .limit(100)
  16. .toArray();
  17. for (int i = 0 ; i != data.length ; i++) {
  18. System.out.println(i+" "+data[i]);
  19. }
  20. }
  21. }
Success #stdin #stdout 0.18s 320448KB
stdin
Standard input is empty
stdout
0 123
1 123
2 123
3 123
4 123
5 123
6 123
7 123
8 123
9 123
10 123
11 123
12 123
13 123
14 123
15 123
16 123
17 123
18 123
19 123
20 123
21 123
22 123
23 123
24 123
25 123
26 123
27 123
28 123
29 123
30 123
31 123
32 123
33 123
34 123
35 123
36 123
37 123
38 123
39 123
40 123
41 123
42 123
43 123
44 123
45 123
46 123
47 123
48 123
49 123
50 123
51 123
52 123
53 123
54 123
55 123
56 123
57 123
58 123
59 123
60 123
61 123
62 123
63 123
64 123
65 123
66 123
67 123
68 123
69 123
70 123
71 123
72 123
73 123
74 123
75 123
76 123
77 123
78 123
79 123
80 123
81 123
82 123
83 123
84 123
85 123
86 123
87 123
88 123
89 123
90 123
91 123
92 123
93 123
94 123
95 123
96 123
97 123
98 123
99 123