{"id":28681,"date":"2026-01-17T09:01:16","date_gmt":"2026-01-17T00:01:16","guid":{"rendered":"https:\/\/blog.agentsoft.co.kr\/index.php\/2026\/01\/17\/28681\/"},"modified":"2026-01-17T09:01:16","modified_gmt":"2026-01-17T00:01:16","slug":"%ec%97%b0%ea%b2%b0%ed%98%95-%ec%9e%90%eb%a3%8c%ea%b5%ac%ec%a1%b0%eb%a5%bc-%ec%9d%b4%ec%9a%a9%ed%95%9c-%eb%8b%a4%ed%95%ad%ec%8b%9d%ec%9d%98-%ea%b3%84%ec%82%b0-%ed%94%84%eb%a1%9c%ea%b7%b8%eb%9e%98","status":"publish","type":"post","link":"https:\/\/blog.agentsoft.co.kr\/index.php\/2026\/01\/17\/28681\/","title":{"rendered":"\uc5f0\uacb0\ud615 \uc790\ub8cc\uad6c\uc870\ub97c \uc774\uc6a9\ud55c \ub2e4\ud56d\uc2dd\uc758 \uacc4\uc0b0 \ud504\ub85c\uadf8\ub798\ubc0d"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/image4.happycampus.com\/Production\/thumb212\/2024\/04\/13\/data29711205-0001.jpg\"><img decoding=\"async\" src=\"https:\/\/image4.happycampus.com\/Production\/thumb212\/2024\/04\/13\/data29711205-0002.jpg\"><\/p>\n<p><strong>\ubaa9\ucc28<\/strong><\/p>\n<p>\uc5c6\uc74c<\/p>\n<p><strong>\ubcf8\ubb38\ub0b4\uc6a9<\/strong><\/p>\n<p>#include <stdio.h><br \/>\n#include <stdlib.h><\/p>\n<p>\/\/ \ub2e4\ud56d\uc2dd \ud56d\uc744 \ud45c\ud604\ud558\ub294 \uad6c\uc870\uccb4<br \/>\ntypedef struct Term {<br \/>\n    int coef;     \/\/ \uacc4\uc218<br \/>\n    int exp;      \/\/ \ucc28\uc218<br \/>\n    struct Term* next; \/\/ \ub2e4\uc74c \ud56d\uc744 \uac00\ub9ac\ud0a4\ub294 \ud3ec\uc778\ud130<br \/>\n} Term;<\/p>\n<p>\/\/ \ub2e4\ud56d\uc2dd\uc744 \uc785\ub825\ubc1b\uc544 \uc5f0\uacb0 \ub9ac\uc2a4\ud2b8\ub85c \uad6c\uc131\ud558\ub294 \ud568\uc218<br \/>\nTerm* inputPolynomial(int termCount) {<br \/>\n    Term* head = NULL;<br \/>\n    Term* tail = NULL;<\/p>\n<p>    for (int i = 0; i < termCount; ++i) {\n        int coef, exp;\n        printf(\"\uacc4\uc218\uc640 \ucc28\uc218\ub97c \ucc28\ub840\ub300\ub85c \uc785\ub825\ud558\uc138\uc694 (\uc608: 2 3): \");\n        scanf(\"%d %d\", &#038;coef, &#038;exp);\n\n        if (coef != 0 &#038;&#038; exp >= 0 &#038;&#038; exp <= 3) {\n            Term* newTerm = (Term*)malloc(sizeof(Term));\n            newTerm->coef = coef;<br \/>\n            newTerm->exp = exp;<br \/>\n            newTerm->next = NULL;<\/p>\n<p>            if (tail == NULL) {<br \/>\n                head = tail = newTerm;<br \/>\n            } else {<br \/>\n                tail->next = newTerm;<\/p>\n<p>\ucd9c\ucc98 : <a href=\"https:\/\/www.happycampus.com\/report-doc\/29711205\/\" target=\"_blank\">\ud574\ud53c\ucea0\ud37c\uc2a4<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ubaa9\ucc28 \uc5c6\uc74c \ubcf8\ubb38\ub0b4\uc6a9 #include #include \/\/ \ub2e4\ud56d\uc2dd \ud56d\uc744 \ud45c\ud604\ud558\ub294 \uad6c\uc870\uccb4 typedef struct Term { int coef; \/\/ \uacc4\uc218 int exp; \/\/ \ucc28\uc218 struct Term* next; \/\/ \ub2e4\uc74c \ud56d\uc744 \uac00\ub9ac\ud0a4\ub294 \ud3ec\uc778\ud130 } Term; \/\/ \ub2e4\ud56d\uc2dd\uc744 \uc785\ub825\ubc1b\uc544 \uc5f0\uacb0 \ub9ac\uc2a4\ud2b8\ub85c \uad6c\uc131\ud558\ub294 \ud568\uc218 Term* inputPolynomial(int termCount) { Term* head = NULL; Term* tail = NULL; for (int i = [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[10314,35867],"class_list":["post-28681","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-c","tag-35867"],"_links":{"self":[{"href":"https:\/\/blog.agentsoft.co.kr\/index.php\/wp-json\/wp\/v2\/posts\/28681","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.agentsoft.co.kr\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.agentsoft.co.kr\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.agentsoft.co.kr\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.agentsoft.co.kr\/index.php\/wp-json\/wp\/v2\/comments?post=28681"}],"version-history":[{"count":0,"href":"https:\/\/blog.agentsoft.co.kr\/index.php\/wp-json\/wp\/v2\/posts\/28681\/revisions"}],"wp:attachment":[{"href":"https:\/\/blog.agentsoft.co.kr\/index.php\/wp-json\/wp\/v2\/media?parent=28681"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.agentsoft.co.kr\/index.php\/wp-json\/wp\/v2\/categories?post=28681"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.agentsoft.co.kr\/index.php\/wp-json\/wp\/v2\/tags?post=28681"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}