Thursday, 3 October 2019

QBasic programming to dispaly the multiplication table

Write a program to display the multiplication table.

CLS
INPUT "Enter any number"; N
FOR I = 1 TO 10
PRINT N; "*"; I; "="; N * I
NEXT I
END

No comments:

Post a Comment

Internet of Things (IoT)

  IoT is the technology or platform that connects any device into network and helps human beings to make their work amazingly faster and eas...