Computer Science, asked by swayamjitsahu, 4 days ago

how can the text blink in the Qbasic output screen?​

Answers

Answered by dugamsachi
3

Answer:

CONST BlinkFactor = 16.

COLOR 15.

PRINT "This is bright white;"

COLOR 15 + BlinkFactor.

PRINT "This is bright white, but blinking."

COLOR 4.

PRINT "This is red;"

COLOR 4 + BlinkFactor.

Answered by jishnuchatterjee5i
0

Answer: There is a More Easier way to do this Which is by using loop.

Explanation:

Cls

For i = 1 To 15

   For s = 2 To 16

       Color (i) + (s)

       Print "Text colour is changed"

   Next s

Next i

End

Similar questions