码迷,mamicode.com
首页 > 编程语言 > 详细

201409-1 相邻数对 Java

时间:2020-02-21 22:14:08      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:class   port   new   int()   public   next   alt   array   util   

技术图片

import java.util.Arrays;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int a[] = new int[n];
        for(int i=0;i<n;i++) {
            a[i] = sc.nextInt();
        }
        Arrays.sort(a);
        int count = 0;
        for(int j=1;j<n;j++) {
            if(a[j]-a[j-1] == 1) {
                count++;
            }
        }
        sc.close();
        System.out.println(count);
    }
}

201409-1 相邻数对 Java

标签:class   port   new   int()   public   next   alt   array   util   

原文地址:https://www.cnblogs.com/yu-jiawei/p/12343192.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!