9 lines
87 B
Matlab
9 lines
87 B
Matlab
k=0;
|
|
for n=100:200
|
|
if rem(n,21)~=0
|
|
k=k+1;
|
|
continue
|
|
end
|
|
break;
|
|
end
|
|
k |