Computer Science, asked by debkotatoyanatha, 9 hours ago

Who will give correct answer i will mark them as brainliest ..
Write a program to print the first ten even numbers.(Use Do ...LOOP)​

Answers

Answered by rajkishorchaudhary63
1

Answer:

To display first 10 even numbers using loop

1)v+21. int i; for (i= 0; i<= 10; i += 2) // Most simple loop. 9th May 2017, 4:00 AM. Dev.

2) +18. @pixie :D. Mayur helped me! ...

3) +4. You forgot to print it @dayve. Lol. ...

4) +4. for(int i=0;i<=10;i+=2){ cout<<i; } 9th May 2017, 4:43 AM. ...

5) +1. I will not be less than equal to 10 will be less than equal to 20. 9th May 2017, 9:16 PM.

Explanation:

hope you got correct answer

Similar questions