Thursday, October 14, 2021

QBASIC pattern program to print the stars in right angle triangle shape (SUB/FUNCTION)

CLS
a$ = "*****"
FOR i = 1 TO LEN(a$)
     PRINT LEFT$(a$, i)
NEXT i
END


Using SUB Procedure

DECLARE SUB strPtrn(a$)
CLS
a$ = "*****"
CALL strPtrn(a$)
END

SUB strPtrn (a$)
FOR i = 1 TO LEN(a$)
     PRINT LEFT$(a$, i)
NEXT i
END SUB


Using FUNCTION Procedure

DECLARE FUNCTION strPtrn
CLS
d = strPtrn
END

FUNCTION strPtrn 
a$ = "*****"
FOR i = 1 TO LEN(a$)
     PRINT LEFT$(a$, i)
NEXT i
END FUNCTION

No comments:

Post a Comment

If you have any doubts, Please let me know.

[Download PDF] Computer Science Book Gread-10 in Nepali Language

 If you are searching for class 10 Computer Science in Nepali pdf for free download then you are at the right page. This book is soley publi...