关于while循环 or for循环 跟arrays的互换。。
两个arrays Strings:String[] quoteOne = {"Facts","are","the","enemy","of","truth"};
String[] quoteTwo = {"Glory","is","fleeting","Obscurity","is","forever"};
怎么样用while循环 或 for 循环把String[] quoteOne & String[] quoteTwo里面的元素调换,例如quoteOne[0] 包含String
"Glory", quoteTwo[0]包含String“facts”, quoteOne[1]包含String"is", quoteTwo[1]包含String"are"等等。。谢谢。