Friday, October 4, 2019

Qbasic to print greatest among three no

CLS
INPUT "Enter any three number"; A, B, C
IF A>B AND A>C THEN
PRINT "The greates number is"; A

ELSEIF B>A AND B>C THEN
PRINT "The greatest number is"; B

ELSE
PRINT "The greatest number is"; C
END IF
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...