Excel VBA, 59 46 Bytes
Golf
VBE Anonim Funtion jendela langsung yang mengambil spasi (
) string array terbatas sebagai input dari rentang [A1]
dan menampilkan angka-angka modulus indeks berbasis 1 mereka dalam daftar awal ke jendela langsung VBE
For Each n In Split([A1]):i=i+1:?n Mod i;:Next
Input output:
[A1]="10 9 8 7 6 5 4 3 2 1" ''# or manually set the value
For Each n In Split([A1]):i=i+1:?n Mod i;:Next
0 1 2 3 1 5 4 3 2 1
Sub
Versi rutin lama
Subrutin yang mengambil input sebagai array yang lulus dan keluar ke jendela langsung VBE.
Sub m(n)
For Each a In n
i=i+1
Debug.?a Mod i;
Next
End Sub
Input / Ouput:
m Array(10,9,8,7,6,5,4,3,2,1)
0 1 2 3 1 5 4 3 2 1
Tidak disatukan
Option Private Module
Option Compare Binary
Option Explicit
Option Base 0 ''# apparently Option Base 1 does not work with ParamArrays
Public Sub modIndex(ParamArray n() As Variant)
Dim index As Integer
For index = LBound(n) To UBound(n)
Debug.Print n(index) Mod (index + 1);
Next index
End Sub
Input output:
Call modIndex(10,9,8,7,6,5,4,3,2,1)
0 1 2 3 1 5 4 3 2 1