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!