Computer Science, asked by abhilatasingh410, 26 days ago

convert the following for loop into do loop for(x=2; x<=10; x+=2) {}​

Answers

Answered by samarpitalds
0

Answer:

x=2;

do{

x+=2;

}

while(x<=10)

Explanation:

Please mark as Brainliest

Similar questions