Convert the following while loop i=1
n=10
while(i<10)
print(n,"*",I,n*i)
i=i+1
Answers
Answered by
0
i=1
n=10
while(i<10){
print(n,"*",i,n*i)
i++
}
Similar questions