Challenge: Print Number Pyramid
Swipe to start coding
Write a program that prints a number pyramid pattern using nested loops. Each row should contain numbers starting from 1 up to the row number, with leading spaces so that the numbers form a centered pyramid.
- For each row from 1 to
rows, print the correct number of leading spaces. - Print the numbers in increasing order from 1 up to the current row number, separated by spaces.
- Each row should be printed on a new line.
- The pyramid should be aligned as shown in the example output.
Solución
The output should look like that:
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
¡Gracias por tus comentarios!
single
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla
Can you explain this in simpler terms?
What are the main takeaways from this?
Can you give me an example?
Genial!
Completion tasa mejorada a 5.56
Challenge: Print Number Pyramid
Desliza para mostrar el menú
Swipe to start coding
Write a program that prints a number pyramid pattern using nested loops. Each row should contain numbers starting from 1 up to the row number, with leading spaces so that the numbers form a centered pyramid.
- For each row from 1 to
rows, print the correct number of leading spaces. - Print the numbers in increasing order from 1 up to the current row number, separated by spaces.
- Each row should be printed on a new line.
- The pyramid should be aligned as shown in the example output.
Solución
The output should look like that:
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
¡Gracias por tus comentarios!
single