fork(1) download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. int[] loops = { 3, 4, 5 };
  9. for (int i = 0; i < loops.Aggregate(1, (p, c) => p * c); i++)
  10. {
  11. Console.WriteLine(i);
  12. }
  13. }
  14. }
Success #stdin #stdout 0.03s 24184KB
stdin
Standard input is empty
stdout
0
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59