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