C++ 07.18 - 범위 기반 for 문 (range-based for statement)

범위 기반 for 문 (range-based for statement) '06.06 - for 문' 포스트에서 for 문을 사용하여 배열의 각 요소를 반복하는 예제를 봤다. #include int main() { const int numStudents = 5; int..

boycoding.tistory.com

 

'C,C++' 카테고리의 다른 글

cin, cout 속도높이기  (0) 2020.07.18
[C++] vector 사용법  (0) 2020.07.03

가끔 알고리즘 풀이 참조할때 이게 왜있나 했는데 이런이유가

 

 

(C++) - cout,cin 실행 속도 높이기(시간초과 해결법)

 문제를 푸실 때 printf,scanf를 사용했을 때 A/C를 받았지만 cout,cin을 사용했을 때 시간초과가 나는 경우가 있습니다. 이는 cout,cin이 printf,scanf보다 컴파일 속도가 느리기 때문에 발생합니다. 평소에

codecollector.tistory.com

 

'C,C++' 카테고리의 다른 글

[C++] range-based for statement  (0) 2020.08.12
[C++] vector 사용법  (0) 2020.07.03

vector 짱짱맨

 

 

(11) C++ vector 사용법

# 벡터란 - Python의 list 같은 느낌, 길이를 변경할 수 있는 가변배열로 동적할당 동적제거가 가능. # 헤더파일 # include # 사용준비 # include using namespace std; int main() { vector vec; } # 벡터 생성..

ldgeao99.tistory.com

 

'C,C++' 카테고리의 다른 글

[C++] range-based for statement  (0) 2020.08.12
cin, cout 속도높이기  (0) 2020.07.18