我在编写下面的代码时犯了错误,但我没有得到 C[] 的结果,因为我想在 C[] 中同时查看 A[] 和 B[] 值!正如您在下面的代码中看到的那样,我尝试过但没有成功。
public class ascending {
/**
* @param args
*/
//@SuppressWarnings("null")
public static void main(String[] args) {
// TODO Auto-generated method stub
int A [] = {1,2,3,4,5};
int B [] = {6,7,8,9,10};
int C[] = null;
int la = A.length;
int lb = B.length;
int lc = A.length + B.length;
System.out.print("ARRAYS in A: ");
for(int x = 0; x<la;x++){
System.out.print(" "+A[x]);
}
System.out.println(" ");
System.out.print
("ARRAYS in B: ");
for(int y=0;y<lb;y++){
System.out.print(" "+B[y]);
}
System.out.println(" ");
System.out.print("Arrays in C: ");
for(int z = 0; z<lc; z++){
System.out.print(" "+C[z]);
}
}
}