https://www.acmicpc.net/problem/25372
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
for (int i = 0; i < N; i++) {
String t = br.readLine();
int length = t.length();
if (length >= 6 && length <= 9) System.out.println("yes");
else System.out.println("no");
}
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 4504 배수 찾기 (0) | 2022.12.09 |
---|---|
백준 2959 거북이 (0) | 2022.12.09 |
백준 3047 ABC (0) | 2022.12.09 |
백준 3058 짝수를 찾아라 (0) | 2022.12.09 |
백준 1284 집주소 (0) | 2022.12.09 |