posted 6 years ago
Hi, so I have to create a number pyramid using nested loops for homework. I am very new to nested loops and am still not quite clear on how they work completely. My objective is to make this pyramid using nested loops:
-----1-----
----333----
---55555---
--7777777--
-999999999-
however I have only been able to get this:
----------1
--------333--
------55555----
----7777777------
--999999999--------
I think I am on the right track but I am not sure where to go from here.
Here is the code I currently have:
Do or do not, there is no try.