Notice
Recent Posts
Recent Comments
Link
알고리즘 모음(C++)
백준 25372 - 성택이의 은밀한 비밀번호(C++) 본문
문제 링크입니다. https://www.acmicpc.net/problem/25372
입력받은 문자열의 길이를 판별하는 문제입니다.
자세한 것은 코드를 참고해주세요
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
#include <cstring>
#include <cmath>
using namespace std;
int N;
int main(){
cin.tie(0);
cout.tie(0);
cin >> N;
for(int i = 1; i <= N; i++){
string x;
cin >> x;
if(x.size() >= 6 && x.size() <= 9){
cout << "yes" << "\n";
}
else cout << "no" << "\n";
}
return 0;
}
질문 및 조언은 댓글을 남겨주세요
'백준' 카테고리의 다른 글
백준 9093 - 단어 뒤집기(C++) (0) | 2023.05.28 |
---|---|
백준 2810 - 컵홀더(C++) (0) | 2023.05.28 |
백준 10822 - 더하기(C++) (0) | 2023.05.28 |
백준 2902 - KMP는 왜 KMP일까?(C++) (0) | 2023.05.20 |
백준 1357 - 뒤집힌 뎃셈(C++) (0) | 2023.05.18 |