Computer Science, asked by rkjoshichev, 10 months ago

display the pattern:
COMPUTER
OMPUTER
MPUTER
PUTER
UTER
TER
ER
R​

Answers

Answered by rajeshsharma80484
0

Answer:

computer

computer

computer

computer

Computwr

Answered by gayatrishah511
3

CLS

A$= "COMPUTER"

B = LEN (A$)

FOR I=B TO I STEP-1

PRINT LEFT$ (A$,I)

NEXT I

END

Similar questions