Notice
Recent Posts
Recent Comments
Link
목록cpp 프로그래밍 (1)
공부하기 싫을 때 쓰는 블로그

이 시리즈는 전기.전자과의 c++프로그래밍/openGL수업을 들으면서 공부한 내용들을 정리해 놓은 것입니다. 각 글마다 c++ primer 5e 의 내용을 요약하고, 해당 내용에 해당하는 간단한 lab이 있습니다. 수업에서 올라오는 과제는 ASSIGNMENT로 따로 쓸 예정입니다. part 1_ THEORY initializing vectors editing vectors vector에 새 element를 추가 -> push_back 사용 string word; vector text;// empty vector while (cin >> word) { text.push_back(word); // append word to text } iterating vectors int main() { vector v{..
카테고리 없음
2021. 9. 5. 22:45