Computer Science, asked by md916676, 2 months ago

How can we do this pattern printing in c++ plz help
*
* #
* # *
* # * #​

Attachments:

Answers

Answered by orakprince
1

Explanation:

int main()

for(int i=0; i<5; i++)

cout>>"*";

for(int j=1;j<4;j++)

cout>>"#";

Similar questions