Computer Science, asked by Lailack, 4 months ago

Convert the following while loop i=1
n=10
while(i<10)
print(n,"*",I,n*i)
i=i+1​

Answers

Answered by brainlistpro
0

i=1

n=10

while(i<10){

print(n,"*",i,n*i)

i++

}

Similar questions