1 Write the program to demonstrate the use of for-each version of for loop in Java.

Code:

public class Test
 {
public static void main(String args[])
{
int [] numbers = {10, 20, 30, 40, 50};

for(int x : numbers )
{
System.out.print( x );
System.out.print(",");
}

System.out.print("\n");
String [] names = {"Coding", "Atharva"};

for( String name : names )
{
System.out.print( name );
System.out.print(",");
}
}
}





Ouput:



Previous
Next Post »