Skip to main content
SEE CS 2083 LEARN • PRACTICE • SUCCEED 🔍

Wednesday, October 16, 2019

📚 SEE COMPUTER SCIENCE • CDC 2083

115. Qbasic program to display numbers 100, 90, 80, .................10

📅 Updated learning resource Quick read 📱 Mobile friendly
115. Write a sub program to display numbers 100, 90, 80, .................10

DECLARE SUB SERIES ( )
CLS
CALL SERIES
END
SUB SERIES
FOR I = 100 TO 80 STEP-10
PRINT I
NEXT I
END SUB

4 comments:

  1. CLS
    A = 1
    B = 1
    Print A;B;
    For I = 1 to 10
    C = A+B
    Print C;
    A = B
    B = C
    Next I
    End

    ReplyDelete
  2. your program is wrong

    ReplyDelete
  3. your program is totally wrong nonsence

    ReplyDelete

Home 📖Chapters 🎯Quiz MCQs 🔍Search