Files
matlab-learning/lab4/exercise4_5.m
2025-11-26 19:01:27 +08:00

9 lines
87 B
Matlab

k=0;
for n=100:200
if rem(n,21)~=0
k=k+1;
continue
end
break;
end
k