Computer Science, asked by anjusec9766, 8 months ago

Aa
bb
ccc
dddd
write a program to print this pattern

Answers

Answered by Anonymous
5

void main()

{

cout<<Aa<<endl<<bb<<endl<<ccc<<dddd;

}

Answered by Aryansingh001
2

Answer:

In python3

>>>print ("aa"),("bb")("ccc")("dddd")

Similar questions