HOW TO MAKİNG PASCAL TRİANGLE !!!

15 visualizaciones (últimos 30 días)
Emre Tutucu
Emre Tutucu el 15 de Mayo de 2020
Comentada: Emre Tutucu el 15 de Mayo de 2020
how can i do this ?
1
121
12321
1234321
123454321
  3 comentarios
Emre Tutucu
Emre Tutucu el 15 de Mayo de 2020
I create the triangle but the number combination is wrong
n=5;
for i=1:n
for j=1:n-i
fprintf(' ');
end
for j=1:i
fprintf(' %d',j);
end
fprintf('\n');
end
1
121
12321
1234321
123454321 have to like that..
Emre Tutucu
Emre Tutucu el 15 de Mayo de 2020
but this is the result I got: 1
1 2
1 2 3
1 2 3 4
1 2 3 4 5

Iniciar sesión para comentar.

Respuesta aceptada

Geoff Hayes
Geoff Hayes el 15 de Mayo de 2020
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
  1 comentario
Emre Tutucu
Emre Tutucu el 15 de Mayo de 2020
thank you so much !
its works...

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by