A program to accept any number and display its multiplication table

A program to accept any number and display its                          multiplication  table


     CLS


      LET C=0


      INPUT "Enter any number", N


      L:LET C=C+1


     PRINT C*N


    IF C<10 THEN GOTO L


    END

    

   You an copy this program and paste it in your Q basic editor.


                  This is a preview of how the output screen will look like for displaying a
 program to accept any number and display its multiplication  table.


Comments

Popular posts from this blog

Introduction to Commands in Q basic

Q BASIC program to display the sum of first 5 odd numbers