Please how i write this algorithms in using pseudo code using general english 1 12 123 1234 12345 and also * ** *** **** ***** i know only one thing that nested loop will be use for these but how i don't know please write these both the programs
To print numbers #define NUMBER_OF_LEVELS 5 for i = 1 to NUMBER_OF_LEVELS for j = 1 to i printf j next j printf '\n' next i Code (markup): To print stars #define NUMBER_OF_LEVELS 5 for i = 1 to NUMBER_OF_LEVELS for j = 1 to i printf "*" next j printf '\n' next i Code (markup):