Filter löschen
Filter löschen

fprintf and \n (pyramid of numbers)

1 Ansicht (letzte 30 Tage)
yonatan friedman
yonatan friedman am 31 Dez. 2019
Beantwortet: Maadhav Akula am 3 Jan. 2020
clc; clear;
n = 6;
j = [];
for i = 1 : n
for j = i:n
fprintf('%d',i:j)
fprintf('\n')
end
end
~~~~~~~~~~~~~~~~~~
i want to do pyramid of numbers
for example n = 6
the output is :
1
23
456

Antworten (1)

Maadhav Akula
Maadhav Akula am 3 Jan. 2020
The following code might be helpful:
clc; clear;
n = 3;
i = 1;
j = 1;
l = 1;
while l<=n
while j<=i && l<=n
fprintf('%d',l)
l = l + 1;
j = j + 1;
end
fprintf('\n')
i = i + 1;
j = 1;
end
Hope this helps!

Kategorien

Mehr zu Simulink Functions finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by