题2:找出落单的那个数
package com;
/* 题2:找出落单的那个数最先出现在Python成神之路。
一个数组里除了某一个数字以外,其他的数都是成对出现。找出那个落单的数。
*/
public class 找出落单的那个数 {
public static void main(String[] args) {
int[] arr={1,2,3,4,5,4,3,2,1};
int x=0;
for(int i=0;i
共有 0 条评论