PPT-Folie
Originalform Übersetzung
h0 = 5*x ; i++ ; h[i] = 5*x ;
h1 = z/a ; i++ ; h[i] = z/a ;
h2 = y-h1 ; h[i] = y-h[i] ;
h3 = 12*h2 ; h[i] = 12*h[i] ;
h4 = n-10 ; i++ ; h[i] = n-10 ;
h5 = h3*h4 ; i-- ; h[i] = h[i]*h[i+1] ;
h6 = h0+h5 ; i-- ; h[i] = h[i]+h[i+1] ;
h7 = abs(h6) ; h[i] = abs(h[i]) ;
w = h7 ; w = h[i] ;