How can we do this pattern printing in c++ plz help
*
* #
* # *
* # * #
Attachments:
Answers
Answered by
1
Explanation:
int main()
for(int i=0; i<5; i++)
cout>>"*";
for(int j=1;j<4;j++)
cout>>"#";
Similar questions