Flipped numbers (number pyramid)
1 次查看(过去 30 天)
显示 更早的评论
% Please help on how can I do a flipped pyramid of integers from 1-9.
% I have this code
n = 4;
for k = 1:n;
for c = 1:n-k;
fprintf(' ');
end
for c = 1:n
fprintf('%d', 1:k);
end
fprintf('\n');
end
However, this code outputs:
1111
12121212
123123123123
1234123412341234
An integer must be inputted and then this number must also correspond to the number of rows that is printed in the command window, along with the increasing numbers up to the inputted number. For example, if I input 4, the output should be this.
1
12
123
1234
Thank you!
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!