How can we do this pattern printing in c++ plz help
*
* #
* # *
* # * #
Attachments:
![](https://hi-static.z-dn.net/files/d4f/2094131ff5de4fc39f83e495974a3c83.jpg)
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