イ int arraysumstep(int *a, int n, int i, int j) { カ int s = 0; ツ while(i < n) { タ s = s + a[i]; コ i = i + j; ウ } セ return s; ウ }