Computer Science, asked by Just7beyondthescene, 9 months ago

write a program to print the following pattern 9 8 7 6 5 4 3 2 1 0

Answers

Answered by anindyaadhikari13
29

Answer:

It is not a pattern, it is a series.

see this.

for(int I=10;I>=1;I--)

System.out.print(I+" ") ;

Explanation:

<marquee>Hope it helps you...Please mark this answer as the brainliest and follow me.</marquee>

Similar questions