defense/src/lst/intro/loop_par_hard.tex

5 lines
78 B
TeX

\begin{cppcode}
for(int i = 1; i < N; i += 2)
a[i] = a[i-1];
\end{cppcode}