public class PoljeElementov { static void poisciSoda(int st[]){ for(int i = 0; i < st.length; i++){ if(st[i] % 2 == 0){ System.out.println(st[i]); } } } public static void main(String a[]){ int stevila[] = {1, 5, 88, 16, 17, 1920, 827, 827, 33, 222, 313, 111}; poisciSoda(stevila); } }