Computer Science, asked by BibekAgarwal773, 3 months ago

Algorithm to print even number between 1 to 50

Answers

Answered by vibhavschaudhary7
0

Answer:

here

Explanation:

for(int i=1;i<=50;i++)

{

if(i%2==0)

System.out.println(i);

}

here quit small rest you can add

Similar questions