Computer Science, asked by mohammedishahaquemol, 11 months ago

Write a program to print the following pattern:-

C

O

M

P

U

T

E

R​

Answers

Answered by aahana9328
2

Answer:

P is for paste as well as for print

Explanation:

I hope it helps you out

Answered by abheergoel10
0

Answer:

Explanation:

This code is in python

a= "COMPUTER"

for i in a:

   print(a[i])

This code is in js

var a = "COMPUTER"

for (i=0; i <a.length; i++){

   console.log(a[i])

}

Similar questions