Q BASIC PROGRAM TO CHECK THE GIVEN NO IS PRIME OR COMPOSITE. SUB
DECLARE SUB CHECK(N)
CLS
INPUT "ENTER ANY NUMBER ";N
CALL CHECK(N)
END
SUB CHECK(N)
C=0
FOR I = 1 TO N
IF N MOD I=0 THEN C=C+1
NEXT I
IF C=2 THEN
PRINT "NO IS PRIME"
ELSE
PRINT "NO IS COMPOSITE"
END IF
END SUB
Search This Blog
Wikipedia
Search results
Subscribe to:
Post Comments (Atom)
Journey of Jagat Mandir H. S. School When I was at the age of three I joined the school in the village. When I came to K...
-
Journey of Jagat Mandir H. S. School When I was at the age of three I joined the school in the village. When I came to K...
-
QBASIC PROGRAM TO FIND REVERSE OF THE STRING .SUB DECLARE SUB REV(N$) CLS INPUT "ENTER A WORD ";N$ CALL REV (N$) END ...
-
QBASIC PROGRAMMING 1) Write a program to input any number and check whether the given number is divisible by 3 and 7 or not. ...
No comments:
Post a Comment