Friday, October 15, 2021

Star Pattern (Pyramid) program in QBASIC (Using SUB/FUNCTION)

OUTPUT

CLS
x$ = "*********"
b = 1
t = 20
FOR i = LEN(x$) TO 1 STEP -2
     PRINT TAB(t); MID$(x$, b, i)
     b = b + 1
     t = t + 1
NEXT i
END


Using SUB Procedure

DECLARE SUB pattern(x$)
CLS
x$ = "*********"
CALL pattern(x$)
END

SUB pattern (x$)
b = 1
t = 20
FOR i = LEN(x$) TO 1 STEP -2
     PRINT TAB(t); MID$(x$, b, i)
     b = b + 1
     t = t + 1
NEXT i
END SUB


Using FUNCTION Procedure

DECLARE FUNCTION pattern()
CLS
p = pattern(x$)
END

FUNCTION pattern (x$)
x$ = "*********"
b = 1
t = 20
FOR i = LEN(x$) TO 1 STEP -2
     PRINT TAB(t); MID$(x$, b, i)
     b = b + 1
     t = t + 1
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...