전체 글 (448) 썸네일형 리스트형 [Level 1][C++] 문자열 다루기 기본 #include #include #include 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 [Level 1][C++] 자연수 뒤집어 배열로 만들기 #include #include using namespace std;vector solution(long long n) { vector answer; while (true) { int a = n / 10; int b = n % 10; n = a; answer.push_back(b); if (a == 0) break; } return answer;} [Level 1][C++] 소수 찾기 #include #include #include using namespace std;int solution(int n) { bool *arr = new bool[n + 1]; int answer = 0; for (int i = 0; i 이전 1 2 3 4 5 ··· 150 다음