Friday, October 4, 2019

Qbasic program to print multiplication table

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

No comments:

Post a Comment

Peer to Peer Network

Peer to Peer Network Peer-to-Peer  is a  network model in which each computer can function as both a client and a server. Any computer in th...