My pain is my motivation!!!!!
Read the post and Follow for more post
Tuesday, September 18, 2018
QBasic Program to check whether the given number is odd or even
Write a program to check whether the given number is odd or even.
CLS
INPUT"ENTER ANY NUMBER";N
IF N MOD 2=0 THEN
PRINT "THE GIVEN NUMBER IS EVEN"
ELSE
PRINT "THE GIVEN NUMBER IS ODD"
END IF
END
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Experience of JM
During my time in high school I had it really good moments, but my best moments that I've experienced are in a particular class during ...
QBASIC to find Area of Circle using SUB
DECLARE SUB Area ( R ) CLS INPUT "Enter radius'; R CALL Area ( R ) END SUB Area ( R ) A = 22 / 7 * R ^ 2 PRINT "Area o...
QBASIC to conver Temperature in Celsius in Fahrenheit using FUNCTION
DECLARE FUNCTION CEL ( C ) CLS INPUT "Enter celsius"; C PRINT "Temperature in celsius fahrenheit = "; CEL ( C ) END ...
No comments:
Post a Comment