Array_Copy,我和你有相同的內容,但我的內容和你的內容是不同一個。陣列
class Array_Copy{
public static void main(String[] args){
double[] prcVan = {200,0, 350.0, 250.0};
double[] prcLisa = new double[prcVan.length];
//System.arraycopy(來源陣列,起始索引值,目的陣列,起始索引值,複製長度);
System.arraycopy(prcVan, 0, prcLisa, 0, prcVan.length);
System.out.print("麗沙小姐將書籍八折出售: ");
for(int i=0; i<prcLisa.length; i++)
prcLisa[i]*=0.8;
for(double price: prcLisa)
System.out.print(price + " ");
System.out.println();
System.out.print("梵谷先生書店的書籍售價: ");
for(double price: prcVan)
System.out.print(price + " ");
}
留言
張貼留言