8 lines
87 B
Matlab
8 lines
87 B
Matlab
for k=1:10
|
|
if k>6
|
|
break
|
|
else
|
|
arry(k)=k;
|
|
end
|
|
end
|
|
disp(arry); |