Guest User

Untitled

a guest
Dec 17th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class Main {
  2. public static void main(String[] args) {
  3. int[] arrayOne = new int[]{0,5,2,4,7,1,3,19};
  4. for(int a: arrayOne){
  5. if(a%2==1){
  6. System.out.println(a);
  7. }
  8.  
  9. }
  10. }
  11. }
Add Comment
Please, Sign In to add comment