Skip to content

Instantly share code, notes, and snippets.

@OwiseKyawMinOo
Created March 11, 2018 04:11
Show Gist options
  • Save OwiseKyawMinOo/051d329e2a79afdabf19f7dc7ba13b48 to your computer and use it in GitHub Desktop.
Save OwiseKyawMinOo/051d329e2a79afdabf19f7dc7ba13b48 to your computer and use it in GitHub Desktop.
% Project 10
% Owise Kyaw Min Oo
key=5;
while key<20
fprintf('number of key %d \n',key);
key=key+1;
if key < 10
continue;
end
fprintf('number of key %d ',key);
end
key=10;
while key<15
fprintf('mumber of key %d \n',key);
key=key+1;
if key == 12
continue;
end
fprintf('number of key %d ',key);
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment