Computer Science, asked by sheetla58prasad, 10 months ago

write the program in Q-BASIC ? to print the following serious
1)11,22,33,44..................... up to 10 terms.
2)2,9,28,65 ....... up to 10 terms.





Answers

Answered by dnybar4520
1

Answer:

1)a=11

for b in range(1,11)

print(a*b)

Similar questions