Thursday, October 3, 2019

Count total no.of words in a sentence.(FUNCTION)

DECLARE FUNCTION COUNT(S$)
CLS
INPUT"ENTER ANY STRING";S$
PRINT "TOTAL NO. OF WORDS= "; COUNT(S$)
END  

FUNCTION COUNT (S$)
WC = 1
FOR I = 1 TO LEN(S$)
B$ = MID$(S$, I, 1)
IF B$ = " " THEN

WC = WC + 1
END IF
NEXT I
COUNT = WC
END FUNCTION

No comments:

Post a Comment

Experience of Quarantine and SEE canceled

Our SEE was canceled due to the outbreak of Corona Virus (COVID-19). It's been 3 months since the Nepalese people have been staying home...