What will be the output of the program? Class test{ public static void main(string [] args){ int x=0; int y=0; for(int z=0; z<5; z++){ if((++x >2) || (++y>2)){ x++; } } system.Out.Println(x +" "+y); } }?
Answers
Answered by
2
The uotput will be 234a
Similar questions