编写脚本,列出从100到200不能被3整除同时也不能被7整除的数.
numlist = []; for i = 100 : 200 if mod(i, 3) && mod(i, 7) numlist = [numlist, i]; end end