Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

wsfdsfdf

x = [1 2 3 4 5 6 7 8 9 10];

disp(x)



index = 1;
while 1
    if (index +1) > (length(x))
        % End of array
        break
    end
    
    if (x(index)) - x(index +1) < -2
        % Pass it.
        break
    end
    
    disp(x(index));
    index++;
end

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.