C++/c++ - 알아두면 좋은 예제200
정수와 문자의 최대/최소값 알아내기(min, max)
정수와 문자의 최대/최소값 알아내기(min, max)
2020.11.15#include #include #include using namespace std; int main() { auto result1 = min(1, 5); auto result2 = max('a', 'z'); cout
c++ 문자열을 숫자로 변환하기(stringstream)
c++ 문자열을 숫자로 변환하기(stringstream)
2020.11.08#include #include using namespace std; int main() { stringstream ss; double number1 = 0.0; ss
c++ 문자열을 정수로 변환하기(stoi)
c++ 문자열을 정수로 변환하기(stoi)
2020.10.30#include #include using namespace std; int main() { string str1 = "10"; string str2 = "2.456"; string str3 = "456 문자열"; int num1 = stoi(str1); int num2 = stoi(str2); int num3 = stoi(str3); cout
c++ 문자열 일부 교체하기(replace)
c++ 문자열 일부 교체하기(replace)
2020.10.30#include #include using namespace std; int main() { string sentence = "i like coding"; string find_str = "coding"; string replace_str = "history"; sentence.replace(sentence.find(find_str), find_str.length(), replace_str); cout
c++ 문자열에서 특정 문자만 제거하기
c++ 문자열에서 특정 문자만 제거하기
2020.10.30#include #include using namespace std; int main() { string sentence = "i like coding"; sentence.erase(remove(sentence.begin(), sentence.end(), ' '), sentence.end()); cout
c++ 문자열 이동하기(move)
c++ 문자열 이동하기(move)
2020.10.30#include #include #include using namespace std; int main() { string str1 = "i like coding"; string str2 = move(str1); cout
c++ 문자열 일부 지우기(erase)
c++ 문자열 일부 지우기(erase)
2020.10.29#include #include using namespace std; int main() { string sentence = "i hate coding"; sentence.erase(0, 7); cout
c++ 문자열 중간에 삽입하기
c++ 문자열 중간에 삽입하기
2020.10.28#include #include using namespace std; int main() { string sentence = "i coding"; sentence.insert(2, "hate "); cout
c++ 문자열 길이 구하기
c++ 문자열 길이 구하기
2020.10.28#include #include using namespace std; int main() { string fist_name = "ha"; string last_name = "jong yun"; cout
c++ 문자열 조회하기(find)
c++ 문자열 조회하기(find)
2020.10.28#include #include using namespace std; int main() { string alpa = "abcdefghijklmnopqrst"; int rtn = alpa.find("jk"); if (rtn > 0) cout
c++ 문자열 비교하기 (string.compare)
c++ 문자열 비교하기 (string.compare)
2020.10.27#include using namespace std; int main() { string seven_war = "임진왜란"; string korea_war = "한국전쟁"; if (seven_war.compare(korea_war) == 0) cout
c++ 지나간 시간 알아내기
c++ 지나간 시간 알아내기
2020.10.27#include #include using namespace std; int main() { time_t start = time(NULL); time_t finish = time(NULL); int pass_int = 1; time(&start); for (int i = 1; i < 100000; i++) { for (int j = 1; j < 100000; j++) pass_int += 1; } time(&finish); cout