{"id":27580,"date":"2024-10-27T14:42:06","date_gmt":"2024-10-27T14:42:06","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=27580"},"modified":"2024-11-26T07:17:03","modified_gmt":"2024-11-26T07:17:03","slug":"c-%ec%bd%94%eb%94%a9%ed%85%8c%ec%8a%a4%ed%8a%b8-%ea%b0%95%ec%a2%8c-%eb%82%98%eb%a8%b8%ec%a7%80-%ed%95%a9-%ea%b5%ac%ed%95%98%ea%b8%b0-2","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/27580\/","title":{"rendered":"C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30"},"content":{"rendered":"<p><body><\/p>\n<article>\n<header>\n<p>\uc791\uc131\uc77c: 2023\ub144 3\uc6d4 10\uc77c<\/p>\n<p>\uc791\uc131\uc790: \uc54c\uace0\ub9ac\uc998 \ub9c8\uc2a4\ud130<\/p>\n<\/header>\n<section>\n<h2>\ubb38\uc81c \uc124\uba85<\/h2>\n<p>\uc8fc\uc5b4\uc9c4 \uc815\uc218 \ubc30\uc5f4\uacfc \uc815\uc218 K\uc5d0 \ub300\ud574, \ubc30\uc5f4\uc758 \ubaa8\ub4e0 \uc6d0\uc18c\ub97c K\ub85c \ub098\ub208 \ub098\uba38\uc9c0\ub97c \uad6c\ud558\uace0, \uc774 \ub098\uba38\uc9c0\uc758 \ud569\uc744 \uad6c\ud558\ub294 \ubb38\uc81c\uc785\ub2c8\ub2e4. \uc774 \ubb38\uc81c\ub97c \ud480\uae30 \uc704\ud574\uc11c\ub294 \ubc30\uc5f4\uc744 \uc21c\ud68c\ud558\uba74\uc11c \uac01 \uc6d0\uc18c\ub97c K\ub85c \ub098\ub208 \ub098\uba38\uc9c0\ub97c \ucde8\ud55c \ud6c4, \uc774\ub97c \ub204\uc801\ud574 \ud569\uc0b0\ud558\ub294 \uacfc\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.<\/p>\n<h2>\ubb38\uc81c \uc694\uc57d<\/h2>\n<ul>\n<li>\uc785\ub825: \uc815\uc218 \ubc30\uc5f4 <code>arr<\/code>\uc640 \uc815\uc218 <code>K<\/code><\/li>\n<li>\ucd9c\ub825: \ubc30\uc5f4\uc758 \uc6d0\uc18c\ub97c K\ub85c \ub098\ub208 \ub098\uba38\uc9c0\uc758 \ud569<\/li>\n<\/ul>\n<h2>\uc785\ub825 \uc608\uc2dc<\/h2>\n<pre><code>[\n    3, 7, 2, 9, 10\n]\nK = 4\n<\/code><\/pre>\n<h2>\ucd9c\ub825 \uc608\uc2dc<\/h2>\n<pre><code>Sum of remainders: 4\n<\/code><\/pre>\n<h2>\ubb38\uc81c \ud574\uacb0 \uc804\ub7b5<\/h2>\n<p>\uc774 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\uae30 \uc704\ud574 \uc6b0\ub9ac\ub294 \ub2e4\uc74c\uacfc \uac19\uc740 \uc804\ub7b5\uc744 \ucde8\ud569\ub2c8\ub2e4.<\/p>\n<ol>\n<li>\uc785\ub825\ub41c \ubc30\uc5f4\uacfc K\ub97c \ubcc0\uc218\uc5d0 \uc800\uc7a5\ud55c\ub2e4.<\/li>\n<li>\ubc30\uc5f4\uc744 \uc21c\ud68c\ud558\uba70 \uac01 \uc6d0\uc18c\ub97c K\ub85c \ub098\ub208 \ub098\uba38\uc9c0\ub97c \uad6c\ud55c\ub2e4.<\/li>\n<li>\uad6c\ud55c \ub098\uba38\uc9c0\ub97c \ub204\uc801\ud574\uc11c \ud569\uc0b0\ud55c\ub2e4.<\/li>\n<li>\ucd5c\uc885\uc801\uc73c\ub85c \ub098\uba38\uc9c0 \ud569\uacc4\ub97c \ucd9c\ub825\ud55c\ub2e4.<\/li>\n<\/ol>\n<h2>C++ \ucf54\ub4dc \uad6c\ud604<\/h2>\n<p>\ub2e4\uc74c\uc740 C++\ub85c \uad6c\ud604\ud55c \ucf54\ub4dc\uc785\ub2c8\ub2e4.<\/p>\n<pre><code>#include &lt;iostream&gt;\n#include &lt;vector&gt;\n\nusing namespace std;\n\nint main() {\n    vector&lt;int&gt; arr = {3, 7, 2, 9, 10}; \/\/ \uc785\ub825 \ubc30\uc5f4\n    int K = 4; \/\/ K \uac12\n    int remainderSum = 0; \/\/ \ub098\uba38\uc9c0 \ud569\uc744 \uc800\uc7a5\ud560 \ubcc0\uc218\n    \n    \/\/ \ubc30\uc5f4 \uc21c\ud68c\n    for (int num : arr) {\n        remainderSum += num % K; \/\/ \ub098\uba38\uc9c0\ub97c \uad6c\ud558\uace0 \ub204\uc801\n    }\n    \n    \/\/ \uacb0\uacfc \ucd9c\ub825\n    cout &lt;&lt; \"Sum of remainders: \" &lt;&lt; remainderSum &lt;&lt; endl;\n    return 0;\n}\n<\/code><\/pre>\n<h2>\uc8fc\uc694 \ucf54\ub4dc \uc124\uba85<\/h2>\n<p>\ucf54\ub4dc\uc5d0\uc11c \uac01 \ubd80\ubd84\uc774 \uc218\ud589\ud558\ub294 \uc5ed\ud560\uc744 \uc0c1\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<ul>\n<li><code>#include &lt;iostream&gt;<\/code>: \uc785\ucd9c\ub825 \uae30\ub2a5\uc744 \uc704\ud574 iostream \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \ud3ec\ud568\ud569\ub2c8\ub2e4.<\/li>\n<li><code>#include &lt;vector&gt;<\/code>: \ub3d9\uc801 \ubc30\uc5f4\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc788\ub3c4\ub85d vector \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \ud3ec\ud568\ud569\ub2c8\ub2e4.<\/li>\n<li><code>using namespace std;<\/code>: std \ub124\uc784\uc2a4\ud398\uc774\uc2a4\ub97c \uc0ac\uc6a9\ud558\uc5ec \ucf54\ub4dc\ub97c \uac04\uacb0\ud558\uac8c \uc791\uc131\ud569\ub2c8\ub2e4.<\/li>\n<li><code>vector&lt;int&gt; arr = {3, 7, 2, 9, 10};<\/code>: \uacc4\uc0b0\uc5d0 \uc0ac\uc6a9\ud560 \uc815\uc218 \ubc30\uc5f4\uc744 \ucd08\uae30\ud654\ud569\ub2c8\ub2e4.<\/li>\n<li><code>int K = 4;<\/code>: \ub098\uba38\uc9c0\ub97c \uad6c\ud560 \uae30\uc900 \uc815\uc218 K\ub97c \uc120\uc5b8\ud569\ub2c8\ub2e4.<\/li>\n<li><code>int remainderSum = 0;<\/code>: \ub098\uba38\uc9c0\uc758 \ud569\uc744 \uc800\uc7a5\ud560 \ubcc0\uc218\ub97c \ucd08\uae30\ud654\ud569\ub2c8\ub2e4.<\/li>\n<li><code>for (int num : arr)<\/code>: \ubc30\uc5f4\uc758 \ubaa8\ub4e0 \uc6d0\uc18c\ub97c \uc21c\ud68c\ud569\ub2c8\ub2e4.<\/li>\n<li><code>remainderSum += num % K;<\/code>: \uac01 \uc6d0\uc18c\ub97c K\ub85c \ub098\ub208 \ub098\uba38\uc9c0\ub97c \uc800\uc7a5\ud569\ub2c8\ub2e4.<\/li>\n<li><code>cout &lt;&lt; \"Sum of remainders: \" &lt;&lt; remainderSum &lt;&lt; endl;<\/code>: \ucd5c\uc885 \uacb0\uacfc\ub97c \ucd9c\ub825\ud569\ub2c8\ub2e4.<\/li>\n<\/ul>\n<h2>\uc2dc\uac04 \ubcf5\uc7a1\ub3c4 \ubd84\uc11d<\/h2>\n<p>\uc774 \uc54c\uace0\ub9ac\uc998\uc758 \uc2dc\uac04 \ubcf5\uc7a1\ub3c4\ub294 O(N)\uc785\ub2c8\ub2e4. \uc5ec\uae30\uc11c N\uc740 \ubc30\uc5f4\uc758 \uc6d0\uc18c \uac1c\uc218\ub97c \ub098\ud0c0\ub0c5\ub2c8\ub2e4. \ubaa8\ub4e0 \uc6d0\uc18c\ub97c \ud55c \ubc88\uc529 \uc21c\ud68c\ud558\uc5ec \ub098\uba38\uc9c0\ub97c \uad6c\ud558\uace0, \uc774\ub97c \ub204\uc801 \ud569\uc0b0\ud558\uae30 \ub54c\ubb38\uc5d0 \ube44\ub840\ud558\ub294 \uc131\ub2a5\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/p>\n<h2>\ud14c\uc2a4\ud2b8 \ucf00\uc774\uc2a4<\/h2>\n<p>\ub2e4\uc74c\uc740 \ub2e4\uc591\ud55c \uc785\ub825\uc5d0 \ub300\ud55c \uacb0\uacfc\ub97c \ud655\uc778\ud558\uae30 \uc704\ud574 \ucd94\uac00\uc801\uc73c\ub85c \uc124\uacc4\ub41c \ud14c\uc2a4\ud2b8 \ucf00\uc774\uc2a4\uc785\ub2c8\ub2e4.<\/p>\n<ul>\n<li>\n<strong>\ud14c\uc2a4\ud2b8 \ucf00\uc774\uc2a4 1:<\/strong><\/p>\n<pre><code>arr = [1, 2, 3], K = 1<\/code><\/pre>\n<p><strong>\ucd9c\ub825:<\/strong> 0 (\ubaa8\ub4e0 \uc218\ub97c 1\ub85c \ub098\ub204\uc5c8\uc744 \ub54c \ub098\uba38\uc9c0\ub294 0)\n                <\/li>\n<li>\n<strong>\ud14c\uc2a4\ud2b8 \ucf00\uc774\uc2a4 2:<\/strong><\/p>\n<pre><code>arr = [5, 6, 7, 8], K = 3<\/code><\/pre>\n<p><strong>\ucd9c\ub825:<\/strong> 6 (5 % 3 = 2, 6 % 3 = 0, 7 % 3 = 1, 8 % 3 = 2, \ucd1d\ud569 = 2 + 0 + 1 + 2 = 5)\n                <\/li>\n<li>\n<strong>\ud14c\uc2a4\ud2b8 \ucf00\uc774\uc2a4 3:<\/strong><\/p>\n<pre><code>arr = [10, 20, 30], K = 10<\/code><\/pre>\n<p><strong>\ucd9c\ub825:<\/strong> 0 (\ubaa8\ub4e0 \uc218\ub97c 10\uc73c\ub85c \ub098\ub204\uc5c8\uc744 \ub54c \ub098\uba38\uc9c0\ub294 \ubaa8\ub450 0)\n                <\/li>\n<\/ul>\n<h2>\uacb0\ub860<\/h2>\n<p>\uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 C++\ub97c \uc774\uc6a9\ud55c \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30 \uc54c\uace0\ub9ac\uc998 \ubb38\uc81c\ub97c \uad6c\ud604\ud558\uc5ec \ud574\uacb0\ud558\ub294 \uacfc\uc815\uc744 \uc0b4\ud3b4\ubcf4\uc558\uc2b5\ub2c8\ub2e4. \uc774 \ubb38\uc81c\ub97c \ud1b5\ud574 \ubc30\uc5f4\uc744 \uc21c\ud68c\ud558\uba70 \uc5f0\uc0b0\uc744 \uc218\ud589\ud558\ub294 \uae30\ubcf8\uc801\uc778 \uc54c\uace0\ub9ac\uc998\uc758 \ud750\ub984\uc744 \uc775\ud790 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uc720\ud615\uc758 \ubb38\uc81c\ub294 \uc54c\uace0\ub9ac\uc998 \uc2dc\ud5d8 \uc900\ube44\uc5d0 \uc720\uc6a9\ud558\uba70, \ucf54\ub529 \ud14c\uc2a4\ud2b8 \ub300\ube44\uc5d0\ub3c4 \ub9ce\uc740 \ub3c4\uc6c0\uc774 \ub420 \uac83\uc785\ub2c8\ub2e4. \ub2e4\uc591\ud55c \uc785\ub825 \ucf00\uc774\uc2a4\ub97c \ud1b5\ud574 \ucf54\ub4dc\ub97c \uac80\uc99d\ud558\uace0, \ud544\uc694\uc5d0 \ub530\ub77c \uc131\ub2a5\uc744 \uc720\uc9c0\ud558\uba74\uc11c \ud480\uc774\ud558\ub294 \ubc29\ubc95\uc744 \uc5f0\uc2b5\ud574\ubcf4\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.<\/p>\n<blockquote>\n<p>\u201c\ud504\ub85c\uadf8\ub798\ubc0d\uc740 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\ub294 \uacfc\uc815\uc774\ub2e4. \ubb38\uc81c\ub97c \uae4a\uc774 \uc774\ud574\ud558\uace0, \uc801\uc808\ud55c \uc194\ub8e8\uc158\uc744 \ucc3e\uc544\ubcf4\uc138\uc694.\u201d<\/p>\n<\/blockquote>\n<\/section>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc791\uc131\uc77c: 2023\ub144 3\uc6d4 10\uc77c \uc791\uc131\uc790: \uc54c\uace0\ub9ac\uc998 \ub9c8\uc2a4\ud130 \ubb38\uc81c \uc124\uba85 \uc8fc\uc5b4\uc9c4 \uc815\uc218 \ubc30\uc5f4\uacfc \uc815\uc218 K\uc5d0 \ub300\ud574, \ubc30\uc5f4\uc758 \ubaa8\ub4e0 \uc6d0\uc18c\ub97c K\ub85c \ub098\ub208 \ub098\uba38\uc9c0\ub97c \uad6c\ud558\uace0, \uc774 \ub098\uba38\uc9c0\uc758 \ud569\uc744 \uad6c\ud558\ub294 \ubb38\uc81c\uc785\ub2c8\ub2e4. \uc774 \ubb38\uc81c\ub97c \ud480\uae30 \uc704\ud574\uc11c\ub294 \ubc30\uc5f4\uc744 \uc21c\ud68c\ud558\uba74\uc11c \uac01 \uc6d0\uc18c\ub97c K\ub85c \ub098\ub208 \ub098\uba38\uc9c0\ub97c \ucde8\ud55c \ud6c4, \uc774\ub97c \ub204\uc801\ud574 \ud569\uc0b0\ud558\ub294 \uacfc\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. \ubb38\uc81c \uc694\uc57d \uc785\ub825: \uc815\uc218 \ubc30\uc5f4 arr\uc640 \uc815\uc218 K \ucd9c\ub825: \ubc30\uc5f4\uc758 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/27580\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[25],"tags":[],"class_list":["post-27580","post","type-post","status-publish","format-standard","hentry","category-c---2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/27580\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uc791\uc131\uc77c: 2023\ub144 3\uc6d4 10\uc77c \uc791\uc131\uc790: \uc54c\uace0\ub9ac\uc998 \ub9c8\uc2a4\ud130 \ubb38\uc81c \uc124\uba85 \uc8fc\uc5b4\uc9c4 \uc815\uc218 \ubc30\uc5f4\uacfc \uc815\uc218 K\uc5d0 \ub300\ud574, \ubc30\uc5f4\uc758 \ubaa8\ub4e0 \uc6d0\uc18c\ub97c K\ub85c \ub098\ub208 \ub098\uba38\uc9c0\ub97c \uad6c\ud558\uace0, \uc774 \ub098\uba38\uc9c0\uc758 \ud569\uc744 \uad6c\ud558\ub294 \ubb38\uc81c\uc785\ub2c8\ub2e4. \uc774 \ubb38\uc81c\ub97c \ud480\uae30 \uc704\ud574\uc11c\ub294 \ubc30\uc5f4\uc744 \uc21c\ud68c\ud558\uba74\uc11c \uac01 \uc6d0\uc18c\ub97c K\ub85c \ub098\ub208 \ub098\uba38\uc9c0\ub97c \ucde8\ud55c \ud6c4, \uc774\ub97c \ub204\uc801\ud574 \ud569\uc0b0\ud558\ub294 \uacfc\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. \ubb38\uc81c \uc694\uc57d \uc785\ub825: \uc815\uc218 \ubc30\uc5f4 arr\uc640 \uc815\uc218 K \ucd9c\ub825: \ubc30\uc5f4\uc758 &hellip; \ub354 \ubcf4\uae30 &quot;C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/27580\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-27T14:42:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T07:17:03+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/27580\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/27580\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30\",\"datePublished\":\"2024-10-27T14:42:06+00:00\",\"dateModified\":\"2024-11-26T07:17:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/27580\/\"},\"wordCount\":18,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/27580\/\",\"url\":\"https:\/\/atmokpo.com\/w\/27580\/\",\"name\":\"C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-27T14:42:06+00:00\",\"dateModified\":\"2024-11-26T07:17:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/27580\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/27580\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/27580\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/27580\/","og_locale":"ko_KR","og_type":"article","og_title":"C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uc791\uc131\uc77c: 2023\ub144 3\uc6d4 10\uc77c \uc791\uc131\uc790: \uc54c\uace0\ub9ac\uc998 \ub9c8\uc2a4\ud130 \ubb38\uc81c \uc124\uba85 \uc8fc\uc5b4\uc9c4 \uc815\uc218 \ubc30\uc5f4\uacfc \uc815\uc218 K\uc5d0 \ub300\ud574, \ubc30\uc5f4\uc758 \ubaa8\ub4e0 \uc6d0\uc18c\ub97c K\ub85c \ub098\ub208 \ub098\uba38\uc9c0\ub97c \uad6c\ud558\uace0, \uc774 \ub098\uba38\uc9c0\uc758 \ud569\uc744 \uad6c\ud558\ub294 \ubb38\uc81c\uc785\ub2c8\ub2e4. \uc774 \ubb38\uc81c\ub97c \ud480\uae30 \uc704\ud574\uc11c\ub294 \ubc30\uc5f4\uc744 \uc21c\ud68c\ud558\uba74\uc11c \uac01 \uc6d0\uc18c\ub97c K\ub85c \ub098\ub208 \ub098\uba38\uc9c0\ub97c \ucde8\ud55c \ud6c4, \uc774\ub97c \ub204\uc801\ud574 \ud569\uc0b0\ud558\ub294 \uacfc\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. \ubb38\uc81c \uc694\uc57d \uc785\ub825: \uc815\uc218 \ubc30\uc5f4 arr\uc640 \uc815\uc218 K \ucd9c\ub825: \ubc30\uc5f4\uc758 &hellip; \ub354 \ubcf4\uae30 \"C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30\"","og_url":"https:\/\/atmokpo.com\/w\/27580\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-27T14:42:06+00:00","article_modified_time":"2024-11-26T07:17:03+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/27580\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/27580\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30","datePublished":"2024-10-27T14:42:06+00:00","dateModified":"2024-11-26T07:17:03+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/27580\/"},"wordCount":18,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/27580\/","url":"https:\/\/atmokpo.com\/w\/27580\/","name":"C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-27T14:42:06+00:00","dateModified":"2024-11-26T07:17:03+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/27580\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/27580\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/27580\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"C++ \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub098\uba38\uc9c0 \ud569 \uad6c\ud558\uae30"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/27580","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=27580"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/27580\/revisions"}],"predecessor-version":[{"id":27581,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/27580\/revisions\/27581"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=27580"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=27580"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=27580"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}