HOW TO MAKİNG PASCAL TRİANGLE !!!
14 次查看(过去 30 天)
显示 更早的评论
how can i do this ?
1
121
12321
1234321
123454321
3 个评论
采纳的回答
Geoff Hayes
2020-5-15
emre - your code needs a third loop to countdown from the middle number to 1. Just add the following code after the second loop so that you print out the missing numbers. Note that you will need to adjust the first for loop so that the spacing is created appropriately.
for j=i-1:-1:1
fprintf(' %d',j);
end
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!