DECLARE SUB COUNT (A$)
CLS
INPUT "Enter a word" ; A$
CALL COUNT (A$)
END
SUB COUNT (A$)
C = 0
FOR I = 1 TO LEN(A$)
B$ = MID$ (A$, I, 1)
C$ = UCASE$ (B$)
IF C$< > "A" OR C$< > "E" OR C$ < > "I" OR C$< >"O" OR C$ < > "U" THEN C = C + 1
NEXT I
PRINT " Total no. of vowels =" C
END FUNCTION
Monday, September 30, 2019
1) QBasic average of three numbers (function)
DECLARE FUNCTION AVG (A, B, C)
CLS
INPUT "Enter any three Numbers " ; A, B, C
PRINT "Average of three numbers =" ; AVG(A, B, C)
END
FUNCTION AVG (A, B, C)
AV = ( A + B + C ) / 3
AVG = AV
END FUNCTION
CLS
INPUT "Enter any three Numbers " ; A, B, C
PRINT "Average of three numbers =" ; AVG(A, B, C)
END
FUNCTION AVG (A, B, C)
AV = ( A + B + C ) / 3
AVG = AV
END FUNCTION
Subscribe to:
Posts (Atom)
My Journey with JM
MY JOURNEY WITH JAGAT MANDIR It has been almost 10 years since I have entered this school. It seems like just yesterday but now I...

-
DECLARE SUB CHECK(N) CLS INPUT " ENTER THE NUMBER";N CALL CHECK(N) END SUB CHECK(N) IF N > 0 THEN PRINT "THE GIVEN...
-
DECLARE FUNCTION COUNT (N$) CLS INPUT " Enter any word ";N$ PRINT "Total no. of vowels ="; COUNT (N$) END FUNCTION...
-
My Picnic Experience We all the students of grade 10 went for picnic to Tokha. We all the students were very excited before a week ago. ...