To display the numbers -10, -5, 0, 5, 10 …. upto 10th term. (Qbasic Code) To display the numbers -10, -5, 0, 5, 10 …. upto 10th term. (Qbasic Code) CLSa = -10c = 1DO UNTIL c > 10 PRINT a a = a + 5 c = c + 1LOOP Share : Twitter