Computer Science, asked by batoulshehab84, 2 months ago

Write a program to display the following series:

100 90 80 70 60 . . . 10 java​

Answers

Answered by prasath201198
1

Answer:

class Main{

public static void main (String[] args){

int a=100, i=10;

while(i<a) {

int b= a-i;

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

a-=10;

}

}

}

Explanation:

this is your answer 100%, make brainliest

Similar questions