int [] numbers = {10, 20, 30, 40, 50};
for(int x : numbers ){
System.out.print( x );
System.out.print(",");
}
转载于:https://www.cnblogs.com/ihins/p/10153899.html
int [] numbers = {10, 20, 30, 40, 50};
for(int x : numbers ){
System.out.print( x );
System.out.print(",");
}
转载于:https://www.cnblogs.com/ihins/p/10153899.html