Thursday, September 10, 2015

Enhanced for loop java

Enhanced for loop java: Enhanced for loop is useful when scanning the array instead of using for loop. Syntax of enhanced for loop is:

for (data_type variable: array_name)

Here array_name is the name of array.

Java enhanced for loop integer array

class EnhancedForLoop { 
public static void main(String[] args) { 
int primes[] = { 2, 3, 5, 7, 11, 13, 17, 19, 23, 29}; 
for (int t: primes) { 
System.out.println(t); 
} 
} 
}
Output of program:

Java enhanced for loop strings

class EnhancedForLoop { 
public static void main(String[] args) { 
String languages[] = { "C", "C++", "Java", "Python", "Ruby"}; 
for (String sample: languages) { 
System.out.println(sample); 
} 
} 
}

Related Posts:

  • Java program to find odd or even This java program finds if a number is odd or even. If the number is divisible by 2 then it will be even, otherwise it is odd. We use modulus operat… Read More
  • Java static block program Java programming language offers a block known as static which is executed before main method executes. Below is the simplest example to understand f… Read More
  • Java program to swap two numbers This java program swaps two numbers using a temporary variable. To swap numbers without using extra variable see another code below. Swapping u… Read More
  • Java for loop Java for loop used to repeat execution of statement(s) until a certain condition holds true. for is a keyword in Java programming language. Java … Read More
  • How to get input from user in java This program tells you how to get input from user in a java program. We are using Scanner class to get input from user. This program firstly asks the… Read More

0 Comments:

Post a Comment