카타 8급 Unfinished Loop - Bug Fixing #1

Jmnote (토론 | 기여)님의 2019년 3월 16일 (토) 14:00 판 (새 문서: ==C++== {{카타|8급|C++|3}} <source lang='cpp'> std::vector<int> createVector(const int n) { std::vector<int> res; for (int i = 1; i <= n; i++) { res.push_back(i); } return r...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

C++

std::vector<int> createVector(const int n)
{
	std::vector<int> res;
	for (int i = 1; i <= n; i++)
	{
		res.push_back(i);
	}
	return res;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}