소개
게시글
질문&답변
2020.05.15
이 후 공부과정.
감사합니다. 처음으로 프로그래밍언어를 끝까지 공부했던 것 같습니다. 개인 사정으로 인하여 늦은 나이에 다시 프로그래밍을 시작하는데 끝까지 할 수 있게 도와주셔서 감사합니다.
- 0
- 2
- 304
질문&답변
2020.05.15
do while 연습문제 질문
감사합니다. 다시 보니 이해가 되었습니다. 어제 너무 급하게 공부하여 이해를 못한거 같아요 . 정말 감사합니다.
- 1
- 2
- 152
질문&답변
2020.05.13
<boost/asio.hpp> 문제
재설치 후에 실행이 잘됩니다. 감사합니다.
- 0
- 2
- 439
질문&답변
2019.10.11
연습문제 답안 질문.
맞게 코딩했는지 궁금하여 올립니다. #include #include using namespace std; int main() { unsigned char option_viewed = 0x01; unsigned char option_edited = 0x02; unsigned char option_liked = 0x04; unsigned char option_shared = 0x08; unsigned char option_deleted = 0x80; unsigned char my_article_flags = 0; if (my_article_flags & option_viewed) {cout else {cout if (my_article_flags | option_liked) {cout else {cout if (my_article_flags ^ option_liked) {cout else {cout if (my_article_flags & option_deleted) {cout else {cout /*cout (option_viewed) cout (option_edited) cout (option_liked) cout (option_shared) cout (option_deleted) cout (my_article_flags) my_article_flags |= option_viewed; cout (my_article_flags) my_article_flags |= option_liked; cout (my_article_flags) my_article_flags ^= option_liked; cout (my_article_flags) my_article_flags &= option_deleted; cout (my_article_flags) return 0; }
- 2
- 3
- 303