Flipped numbers (number pyramid)

조회 수: 12 (최근 30일)
Mikaila Denise Loanzon
Mikaila Denise Loanzon 2020년 3월 31일
댓글: Birdman 2020년 3월 31일
% 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개)

Birdman
Birdman 2020년 3월 31일
n=4;
for i=1:n
A(i)=str2double(string(sprintf('%d',1:i)));
end
disp(A)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by