Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Java For Each Loop
class Rextester { public static void main(String[] args) { int[] value = new int[] {11,22,33}; //int[0],int[1],int[2] /* for(int i=0; i<value.length; i++){ System.out.println(value[i]); }*/ for(int i : value){ System.out.println(i); } } }
run
|
edit
|
history
|
help
0
생성자
assign
PE #6
Javaprog
JAVA sidebar pattern match
Homework
Reverse Number in java
apple1
Neeraj
exp 4