Computer Science, asked by jsenior821, 5 months ago

#include<stdio.h>

void main( )

{

int a=100;

do

{

if(a%2==0)

printf(“%d\n”,a);

a-=2;

if (a==90)

break;

}

while(a>=80);
}​

Answers

Answered by julietiwari161
6

Answer:

plz write full question.... don't understand it's

Similar questions