Challenge: Print Number Pyramid
Oppgave
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.
Løsning
Note
The output should look like that:
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 3. Kapittel 2
single
Spør AI
Spør AI
Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår
Fantastisk!
Completion rate forbedret til 5.56
Challenge: Print Number Pyramid
Sveip for å vise menyen
Oppgave
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.
Løsning
Note
The output should look like that:
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 3. Kapittel 2
single