c++

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 문자열 섞기

문제 코드 #include #include #include using namespace std; string solution(string str1, string str2) { string answer = ""; for (int i = 0; i < str1.size(); ++i) { answer += str1[i]; answer += str2[i]; } // 다른 사람 풀이 /* for (int i = 0; i < str1.length(); i++) { answer.push_back(str1[i]); answer.push_back(str2[i]); } */ return answer; }

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 문자열 겹쳐쓰기

문제 코드 #include #include #include using namespace std; // 내 풀이 string solution(string my_string, string overwrite_string, int s) { int index = 0; for (int i = s; i < overwrite_string.size() + s; ++i) { my_string[i] = overwrite_string[index++]; } string answer = my_string; return answer; } /* 다른 사람 풀이 string solution(string my_string, string overwrite_string, int s) { string answer = ""; answer = ..

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 홀짝 구분하기

문제 코드 #include using namespace std; int main(void) { int n; cin >> n; cout

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 문자열 돌리기

문제 코드 #include #include using namespace std; int main(void) { string str; cin >> str; for (const auto c : str) { cout

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 문자열 붙여서 출력하기

문제 코드 #include #include using namespace std; int main(void) { string str1, str2; cin >> str1 >> str2; cout

언리얼 엔진/C++

[언리얼엔진] C++ 현재 맵 이름 가져오기

설명 언리얼엔진에서 C++ 코드를 통해서 현재 맵 이름을 가져오는 방법이다. StreamingLevelPrefix 를 통해서 에디터에서 플레이할 때 나오는 'UEDPIE_Num_' 을 제거해준다. 코드 FString LevelName = GetWorld()->GetMapName(); LevelName.RemoveFromStart(GetWorld()->StreamingLevelPrefix);

mane
'c++' 태그의 글 목록 (21 Page)