Skip to content

Commit aba563f

Browse files
committed
For loop practice.
Signed-off-by: Someshdiwan <[email protected]>
1 parent 9363826 commit aba563f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import java.util.Scanner;
2+
3+
class A1
4+
{
5+
public static void main(String[] args)
6+
{
7+
int [] A = {11,22,33,44,55};
8+
9+
for(int i=0; i<A.length; i++)
10+
{
11+
System.out.println(A[i]);
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)