Computer Science, asked by harshitiit94, 7 months ago

Write the output for the following int a[ ] ={20,30,40,50}; for(int i=0; i<4;i++)) { if ( a[i]% 4 ==0) { System.out.print(a[i]+" ");}}​

Answers

Answered by da4729204
1

Answer:

output of program is 20 40

Similar questions