Answers for "print array with index java"

1

how to print the index of an array in java

public class PrintArray {  
    public static void main(String[] args) {  
        //Initialize array  
        int [] arr = new int [] {1, 2, 3, 4, 5};  
        System.out.println("Elements of given array: ");  
        //Loop through the array by incrementing value of i  
        for (int i = 0; i < arr.length; i++) {  
            System.out.print(arr[i] + " ");  
        }  
    }  
}
Posted by: Guest on November-11-2021
0

how to print certain elements of an array

var array = ['a','b','c','d','e','f','g']


for(var i = 0; i < array.length ; i++){
    if ((array[i] != 'b') && (array[i] != 'f')){
    console.log(array[i]) 
    }  
}
/*
if statement and u need && and number of statements needs same number of ()
every letter needs own statement and != means not 

*/
Posted by: Guest on June-05-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language