mizushou
11/18/2017 - 10:32 PM

GoodInterger.java

問題文 1118 のような、3 つ以上の同じ数字が連続して並んだ 4 桁の整数を 良い整数 とします。

4 桁の整数 N が与えられるので、N が 良い整数 かどうかを答えてください。

制約 1000≦N≦9999 入力は整数からなる

import java.util.Scanner;

class GoodInterger {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] c = sc.next().toCharArray();
		sc.close();
		if(c[0] == c[1] && c[1] == c[2] || c[1] == c[2] && c[2] == c[3]) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}
}