카타 8급 Convert a Boolean to a String

C++[ | ]

std::string boolean_to_string(bool b){
  return b? "true": "false";
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}