Computer Science, asked by mahiprincy50, 10 months ago

to print the pattern

Attachments:

Answers

Answered by skumarfireman
0

Answer:

check in YouTube

channel name is amulus academy

it will help you allot.

I am also a cs student and iam studying from this..

Answered by tamaghnadey1916
0

Answer:

for i in range (4):

for j in range(i,-1,-1):

if j%2==0: print ("#",end=" ")

else: print("*",end=" ")

print ()

Explanation:

I did it in python but I can also do this in JAVA if you want. Just comment that below.

I hope this helps you.

Please mark me the Brainliest.

Similar questions