7,14,21 ,...up to 10 terms Write a program in q basic and display first 10 terms of the series
Answers
Answered by
1
Answer:
b=input("Enter any no")
for q in a range(1,11):
print(b*q)
Answered by
2
Answer:. C=0
T=7
FOR C= 1 TO 10
T=T+7
PRINT T
NEXT C
Explanation:
Similar questions