Answers for "how to store the results from the for loop of array in java"

0

how to use for loop for array in java

// Java program to iterate over an array 
// using for loop 
import java.io.*; 
class GFG { 
  
    public static void main(String args[]) throws IOException 
    { 
        int ar[] = { 1, 2, 3, 4, 5, 6, 7, 8 }; 
        int i, x; 
  
        // iterating over an array 
        for (i = 0; i < ar.length; i++) { 
  
            // accessing each element of array 
            x = ar[i]; 
            System.out.print(x + " "); 
        } 
    } 
}
Posted by: Guest on May-08-2020

Code answers related to "how to store the results from the for loop of array in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language