코딩테스트/프로그래머스
[Level 1][C++] 문자열 다루기 기본
MJ.Lee
2024. 10. 10. 22:39
#include <string>
#include <cstring>
#include <vector>
using namespace std;
bool solution(string s) {
if (s.length() == 4 || s.length() == 6)
{
char* arr = new char[s.length() + 1];
strcpy(arr, s.c_str()); //문자열 char배열로 변환
for (int i = 0; i < s.length(); i++)
if (isdigit(arr[i]) == 0)
return false;
return true;
}
else
return false;
}