::public/코딩테스트 풀이45 약수의 합 *약수의 합 #include using namespace std; int solution(int n) { int answer = 0; /**case1*/ O(n) for(int i = 1; i 2019. 9. 5. 문자열을 정수로 바꾸기 *문자열을 정수로 바꾸기(음수도 stoi 됨;) #include #include using namespace std; int solution(string s) { int answer = 0; answer = stoi(s); return answer; } cs 2019. 9. 5. 수박수박수 *수박수박수? n의 값에 따른 "수박수박수.." 출력. #include #include using namespace std; string solution(int n) { string answer = ""; for(int i = 0; i 2019. 9. 5. 소수 찾기 *소수 찾기 1부터 입력받은 숫자 n 사이에 있는 소수의 개수를 반환 #include #include using namespace std; int solution(int n) { int answer = 0; vector nums = {0,0}; for(int i = 2; i 2019. 9. 5. 문자열 다루기 기본 *문자열 다루기 기본 문자열 s의 길이가 4혹은 6이고, 숫자로만 구성돼있는지 확인 #include #include using namespace std; bool solution(string s) { for ( char c : s ) { if ( isdigit(c) == false ) return false; } if ( s.length() != 4 && s.length() != 6 ) return false; } Colored by Color Scriptercs 2019. 9. 5. 문자열 내맘대로 정렬하기 *문자열 내맘대로 정렬하기(string) 문자열 리스트 strings와 정수 n이 주어짐. 문자열의 n번째 인덱스 비교. 오름차순 정렬. 단 문자열 n번째가 같으면 전체 문자열 비교. #include #include #include using namespace std; int pos; bool compareStr(string a, string b) { if(a[pos] == b[pos]) { return a 2019. 9. 5. 이전 1 2 3 4 5 6 7 8 다음