Assume that the int variables i , j and n have been declared , and n has been initialized . Write code that causes a “triangle” of asterisks to be output to the screen, i.e., n lines should be printed out, the first consisting of a single asterisk, the second consisting of two asterisks, the third consisting of three, etc. The last line should consist of n asterisks.

C++

LANGUAGE: C++ CHALLENGE: Assume that the int variables i , j and n have been declared , and n has been initialized . Write code that causes a “triangle” of asterisks to be output to the screen, i.e., n lines should be printed out, the first consisting of a single asterisk, the second consisting of…

Read More

Assume that the int variables i , j and n have been declared , and n has been initialized . Write code that causes a “triangle” of asterisks to be output to the screen, i.e., n lines should be printed out, the first consisting of a single asterisk, the second consisting of two asterisks, the third consisting of three, etc. The last line should consist of n asterisks.

C++

LANGUAGE: C++ CHALLENGE: Assume that the int variables i , j and n have been declared , and n has been initialized . Write code that causes a “triangle” of asterisks to be output to the screen, i.e., n lines should be printed out, the first consisting of a single asterisk, the second consisting of…

Read More