2018年11月2日

摘要: int N = a.length; for(int i = 0; i < N/2; i++){ double temp = a[i]; a[i] = a[N-1-i]; a[N-1-i] = temp; } 阅读全文

posted @ 2018-11-02 22:10 Zero_THX 阅读(138) 评论(0) 推荐(0)