% RANDOMSEARCH low = 0; high = 10; size = 5; target = 7; data = randIntVec(low,high,size) guess = readInt(low,high,'Guess! '); while guess ~= target disp('Wrong!'); guess = readInt(low,high,'Guess! '); end disp('Right!');