7 lines
100 B
Matlab
7 lines
100 B
Matlab
for i = 1:10
|
|
printf(' %2d', i);
|
|
if ( mod(i, 5) == 0 )
|
|
printf('\n');
|
|
continue
|
|
end
|
|
end
|