Computer Science, asked by anmolpreet6712, 3 months ago

write a program to print the below sequrence 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1

Answers

Answered by shawkrish418
0

Answer:

Import java.util.*

class sequence

{

public static void main ()

{

int i;

(for i=15;i>=1;i--)

{

System.out.print(i);

}

System.out.println();

}

}

Similar questions