Notice
Recent Posts
Recent Comments
Link
목록분류 전체보기 (122)
마이라이프해피라이프
백준 7568번 c++ 풀이 - 덩치 (2차원 vector 할당 )
- 2차원 벡터에 추가할 때 vec.push_back({height, weight}) - index 0부터 시작하는 것 주의 #include #include using namespace std; //7568번 int main() { int length; cin >> length; vector vec; for (int i = 0; i > height >> weight; vec.push_back({height, weight}); } for (unsigned j = 0; j
컴퓨터/백준(C++)
2021. 8. 27. 16:15
백준 1769번 c++ 풀이 - 3의 배수 (int to string)
- int to string : to_string() 사용. include 필수 - string to int: int로 변환한 뒤 - 48 #include #include using namespace std; int main() { string str; cin >> str; int count = 0; while (int(str.size()) != 1) { int sum = 0; for (unsigned i = 0; i
컴퓨터/백준(C++)
2021. 8. 24. 18:27