Drawing this shape using *
2 次查看(过去 30 天)
显示 更早的评论
How to draw This Shape
*
* *
* *
* *
* *
I tried to play around some nested loops and didn't work for me
0 个评论
采纳的回答
Star Strider
2019-2-23
This takes me back to my FORTRAN days in the late 1960s when line printer code similar to this was the only option for plotting.
Try this:
spc = uint16(' ');
ast = uint16('*');
tringl = char(ones(6,6,'uint8')*32);
for k1 = 2:size(tringl,1)
tringl(k1,[8-k1,4+k1]) = ast;
end
for k1 = 1:size(tringl,1)
fprintf(1, '%s\n', tringl(k1,:))
end
Experiment to get the result you want.
7 个评论
Star Strider
2019-2-24
My pleasure.
Index the character array to fill stars from the centre to each side, incrementing by 1 in each iteration.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!