题解 | #明明的随机数#

明明的随机数

http://www.nowcoder.com/practice/3245215fffb84b7b81285493eae92ff0

import java.util.Scanner;

public class Main { 
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNextInt()) {
            int count = sc.nextInt();
            int[] data = new int[count];

            for(int i = 0; i < count; i++) {
                data[i] = sc.nextInt();
            }   

            sort(data);
            for(int i = 0; i < data.length - 1; i++) {
                if(data[i] == data[i+1]) {
    
                } 
              // if there is no data is eual then just print it out
              else if(data[i] != data[i+1]) {
                    System.out.println(data[i]);
                }   

                if( i + 2 == data.length) {
                    System.out.println(data[i+1]);
                }   
            }   
        }   

    }   


  // Bubble sort the data, the make the duplicate data oout of system
    private static void sort(int[] arr) {
        for(int i = 0; i < arr.length; i++) {
            for(int j = i; j > 0; j--) {
                if(arr[j] < arr[j-1]) {
                    int tmp = arr[j];
                    arr[j] = arr[j-1];
                    arr[j-1] = tmp;
                }   
            }   
        }   
    }   

}

// Thank you for all of you appreciation
全部评论

相关推荐

牛客10001:G了+1,被前端/客户端给捞起来了,不太想面
投递美团等公司6个岗位 美团求职进展汇总
点赞 评论 收藏
分享
05-03 12:45
西南大学 Java
sdgfdv:你这项目写的内容太多了,说实话都是在给自己挖坑,就算简历过了,后面面试也难受
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务