Computer Science, asked by sanchana33, 10 months ago

int a=0;
while (a>-5)
{
S.o.p(a+" ");
S.o.p((--a*2));
S.o.pln();
--a;
}

Java programming

Answers

Answered by mahekabidasyed
1
  • int \: a \\  = whil(a >  - 5)s \: op \: (a + ..)sop(( - a \times 2)sop \: pin{} - a
Answered by purveshKolhe
4

Answer:

Your output will be

-4

-10

-11.

hope this helps you

Similar questions