theinfozones blog
To display the series 2, 3, 5, 8, 13 … upto 10th terms. (Qbasic Code)
To display the series 2, 3, 5, 8, 13 … upto 10th terms.
CLS
a = 2
b = 3
FOR i = 1 TO 10
PRINT a;
c = a + b
a = b
b = c
NEXT i
END
Newer Post
Older Post
Home