C++ (Qt)for (int i=0;i<100;++i){ x[i]+=f(x[i]);}
C++ (Qt)for (int i=0;i<100;i+=2){ t[0]=f(x[i]); t[1]=f(x[i+1]); x[i]+t[0]; x[i+1]+=t[1];}
C++ (Qt)void f(double& a){double* t=&a;return t[0]+t[-1];}
C++ (Qt)а операции вроде x[i]+=t[0];x[i+1]+=t[1];