0% found this document useful (0 votes)
38 views2 pages

Extended LoopForeach Program in Java

The document is a technical blog post about using extended for loops in Java code. It includes a Java program that uses a for-each loop to iterate through an integer array and print out each element. The program first uses a traditional for loop to populate the array with user-entered integers, then a for-each loop to print the contents without using an iterator index.

Uploaded by

chiraghz
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views2 pages

Extended LoopForeach Program in Java

The document is a technical blog post about using extended for loops in Java code. It includes a Java program that uses a for-each loop to iterate through an integer array and print out each element. The program first uses a traditional for loop to populate the array with user-entered integers, then a for-each loop to print the contents without using an iterator index.

Uploaded by

chiraghz
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

hackingzo ne s.

co m

http://hackingzo nes.co m/?p=6220

Extended loop(For-each) program in java


import java.util.Scanner; class each { int a[]=new int[10]; int i; public void extendloop() { System.out.print(enter element in array = ); f or(i=1;i<=10;i++) { Scanner z=new Scanner(System.com); a[i]=z.nextInt(); } } public void ext() { System.out.println(value stored in array is = ); f or(int b:a) { System.out.println(b); } } } public class Extended_Loop_Program { public static void main(String k[]) { each q1=new each(); q1.extendloop(); q1.ext(); } }

Relat ed Post
SHA1 Hash generating program in java MD5 Hash generating program in java Java Program to Find Network Interf ace Java Program to f ind Your IP Address and LoopBack Address Shif t Operator Program in Java Enter your email address:

Delivered by FeedBurner

Post Footer automatically generated by Add Post Footer Plugin f or wordpress.

You might also like