Notice
Recent Posts
Recent Comments
Link
목록string library (1)
완숙의 블로그
[C++] 10 - String library, rand(), srand()
String library method #include #include using namespace std; int main(){ string word = "good"; word.length();// 길이 리턴 word.empty();// 빈 문자열인지 1, 0값 리턴 word.clear();// 문자열 삭제 word += "-bye";// 더하기 가능 word[0];// h word[word.length() - 1];// 마지막 단어 i word.find("a"); // 해당 문자열이 없으면 string::npos 리턴 return 0; } substr string word = "good-bye"; word.substr(2, 5); rand() rand()는 난수를 발생시키는 함수이다. 하지만 사실 자..
Programing Language/C++
2019. 4. 10. 23:10