{"id":28905,"date":"2024-11-25T15:06:53","date_gmt":"2024-11-25T07:06:53","guid":{"rendered":"https:\/\/fwq.ai\/blog\/28905\/"},"modified":"2024-11-25T15:06:53","modified_gmt":"2024-11-25T07:06:53","slug":"c%e8%af%ad%e8%a8%80%e5%ae%9e%e7%8e%b0%e7%9a%84%e4%b8%80%e4%b8%aa%e4%b8%87%e5%b9%b4%e5%8e%86%e5%b0%8f%e7%a8%8b%e5%ba%8f%ef%bc%88%e9%99%84%e4%bb%a3%e7%a0%81%ef%bc%89","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/28905\/","title":{"rendered":"C\u8bed\u8a00\u5b9e\u73b0\u7684\u4e00\u4e2a\u4e07\u5e74\u5386\u5c0f\u7a0b\u5e8f\uff08\u9644\u4ee3\u7801\uff09"},"content":{"rendered":"<p>\u8fd9\u7bc7\u6587\u7ae0\u4e3b\u8981\u4ecb\u7ecd\u4e86c\u8bed\u8a00\u5b9e\u73b0\u7684\u4e00\u4e2a\u4e07\u5e74\u5386\u5c0f\u7a0b\u5e8f,\u76f8\u5bf9\u7b80\u5355,\u505ac\u8bed\u8a00\u65e5\u671f\u8ba1\u7b97\u7684\u670b\u53cb\u53ef\u4ee5\u53c2\u8003\u4e0b<\/p>\n<p>\u8be5\u7a0b\u5e8f\u7b80\u5355\u5730\u8f93\u5165\u4e00\u4e2a\u5e74\u4efd\uff081901\u5e74\u4e4b\u540e\u7684\u5e74\u4efd\uff09\uff0c\u968f\u540e\u7a0b\u5e8f\u8f93\u51fa\u8be5\u5e74\u4efd\u5341\u4e8c\u4e2a\u6708\u7684\u65e5\u5386\u3002<\/p>\n<p><\/p>\n<pre>#include&lt;stdio.h&gt;\r\n\r\n#define&nbsp;Mon&nbsp;&nbsp;&nbsp;1\r\n#define&nbsp;Tues&nbsp;&nbsp;2\r\n#define&nbsp;Wed&nbsp;&nbsp;&nbsp;3\r\n#define&nbsp;Thur&nbsp;&nbsp;4\r\n#define&nbsp;Fri&nbsp;&nbsp;&nbsp;5\r\n#define&nbsp;Sat&nbsp;&nbsp;&nbsp;6\r\n#define&nbsp;Sun&nbsp;&nbsp;&nbsp;0\r\n\r\n#define&nbsp;January_days&nbsp;&nbsp;&nbsp;31\r\n#define&nbsp;February_days&nbsp;&nbsp;&nbsp;28\r\n#define&nbsp;March_days&nbsp;&nbsp;&nbsp;&nbsp;31\r\n#define&nbsp;April_days&nbsp;&nbsp;&nbsp;&nbsp;30\r\n#define&nbsp;May_days&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;31\r\n#define&nbsp;June_days&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;30\r\n#define&nbsp;July_days&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;31\r\n#define&nbsp;August_days&nbsp;&nbsp;&nbsp;&nbsp;31\r\n#define&nbsp;September_days&nbsp;&nbsp;30\r\n#define&nbsp;October_days&nbsp;&nbsp;&nbsp;31\r\n#define&nbsp;November_days&nbsp;&nbsp;&nbsp;30\r\n#define&nbsp;December_days&nbsp;&nbsp;&nbsp;31\r\n\r\n#define&nbsp;first1month&nbsp;January_days\r\n#define&nbsp;first2month&nbsp;January_days+February_days\r\n#define&nbsp;first3month&nbsp;January_days+February_days+March_days\r\n#define&nbsp;first4month&nbsp;January_days+February_days+March_days+April_days\r\n#define&nbsp;first5month&nbsp;January_days+February_days+March_days+April_days+May_days\r\n#define&nbsp;first6month&nbsp;January_days+February_days+March_days+April_days+May_days+June_days\r\n#define&nbsp;first7month&nbsp;January_days+February_days+March_days+April_days+May_days+June_days&nbsp;\r\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+July_days\r\n#define&nbsp;first8month&nbsp;January_days+February_days+March_days+April_days+May_days+June_days&nbsp;\r\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+July_days+August_days\r\n#define&nbsp;first9month&nbsp;January_days+February_days+March_days+April_days+May_days+June_days&nbsp;\r\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+July_days+August_days+September_days\r\n#define&nbsp;first10month&nbsp;January_days+February_days+March_days+April_days+May_days+June_days&nbsp;\r\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+July_days+August_days+September_days+October_days\r\n#define&nbsp;first11month&nbsp;January_days+February_days+March_days+April_days+May_days+June_days&nbsp;\r\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+July_days+August_days+September_days+October_days+November_days\r\n\r\nint&nbsp;known_weekday&nbsp;=&nbsp;Tues;\r\nint&nbsp;known_year&nbsp;=&nbsp;1901;\r\nint&nbsp;konwn_month&nbsp;=&nbsp;1;\r\nint&nbsp;known_day&nbsp;=&nbsp;1;\r\n\r\nint&nbsp;day_count(int&nbsp;month)\r\n{\t\r\n\tswitch(month)\r\n\t{\r\n\t\tcase&nbsp;1:&nbsp;return&nbsp;0;break;\r\n\t\tcase&nbsp;2:&nbsp;return&nbsp;first1month;break;\r\n\t\tcase&nbsp;3:&nbsp;return&nbsp;first2month;break;\r\n\t\tcase&nbsp;4:&nbsp;return&nbsp;first3month;break;\r\n\t\tcase&nbsp;5:&nbsp;return&nbsp;first4month;break;\r\n\t\tcase&nbsp;6:&nbsp;return&nbsp;first5month;break;\r\n\t\tcase&nbsp;7:&nbsp;return&nbsp;first6month;break;\r\n\t\tcase&nbsp;8:&nbsp;return&nbsp;first7month;break;\r\n\t\tcase&nbsp;9:&nbsp;return&nbsp;first8month;break;\r\n\t\tcase&nbsp;10:&nbsp;return&nbsp;first9month;break;\r\n\t\tcase&nbsp;11:&nbsp;return&nbsp;first10month;break;\r\n\t\tcase&nbsp;12:&nbsp;return&nbsp;first11month;break;\r\n\t}\r\n}\r\n\r\n\r\n\/*char&nbsp;*&nbsp;month_name(int&nbsp;month)\r\n{\r\n\tswitch(month)\r\n\t{\r\n\t\tcase&nbsp;1:\r\n\t\t\treturn&nbsp;\"January\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;2:\r\n\t\t\treturn&nbsp;\"February\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;3:\r\n\t\t\treturn&nbsp;\"March\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;4:\r\n\t\t\treturn&nbsp;\"April\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;5:\r\n\t\t\treturn&nbsp;\"May\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;6:\r\n\t\t\treturn&nbsp;\"June\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;7:\r\n\t\t\treturn&nbsp;\"July\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;8:\r\n\t\t\treturn&nbsp;\"August\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;9:\r\n\t\t\treturn&nbsp;\"September\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;10:\r\n\t\t\treturn&nbsp;\"October\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;11:\r\n\t\t\treturn&nbsp;\"November\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;12:\r\n\t\t\treturn&nbsp;\"December\";\r\n\t\t\tbreak;\r\n\t\tdefault:\r\n\t\t\tbreak;\r\n\t}\r\n}*\/\r\n\r\nchar&nbsp;*&nbsp;month_name(int&nbsp;month)\r\n{\r\n\tswitch(month)\r\n\t{\r\n\t\tcase&nbsp;1:\r\n\t\t\treturn&nbsp;\"\u4e00\u6708\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;2:\r\n\t\t\treturn&nbsp;\"\u4e8c\u6708\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;3:\r\n\t\t\treturn&nbsp;\"\u4e09\u6708\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;4:\r\n\t\t\treturn&nbsp;\"\u56db\u6708\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;5:\r\n\t\t\treturn&nbsp;\"\u4e94\u6708\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;6:\r\n\t\t\treturn&nbsp;\"\u516d\u6708\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;7:\r\n\t\t\treturn&nbsp;\"\u4e03\u6708\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;8:\r\n\t\t\treturn&nbsp;\"\u516b\u6708\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;9:\r\n\t\t\treturn&nbsp;\"\u4e5d\u6708\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;10:\r\n\t\t\treturn&nbsp;\"\u5341\u6708\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;11:\r\n\t\t\treturn&nbsp;\"\u5341\u4e00\u6708\";\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;12:\r\n\t\t\treturn&nbsp;\"\u5341\u4e8c\u6708\";\r\n\t\t\tbreak;\r\n\t\tdefault:\r\n\t\t\tbreak;\r\n\t}\r\n}\r\n\r\n\/*\u6309\u683c\u5f0f\u6253\u5370\u67d0\u5e74\u67d0\u6708\u540d\u79f0*\/\r\nvoid&nbsp;first_line_print(int&nbsp;month,&nbsp;int&nbsp;year)\r\n{\r\n\t\/\/printf(\"%20s&nbsp;%d&nbsp;\n\",month_name(month),year);\r\n\tprintf(\"%8d\u5e74&nbsp;%s&nbsp;\n\",year,&nbsp;month_name(month));\r\n}\r\n\r\n\/*\u6309\u683c\u5f0f\u6253\u5370\u661f\u671f\u540d\u79f0*\/\r\nvoid&nbsp;week_print()\r\n{\r\n\t\/\/printf(\"%-6s%-6s%-6s%-6s%-6s%-6s%-6s\n\",\"Sun.\",&nbsp;\"Mon.\",&nbsp;\"Tues.\",&nbsp;\"Wed.\",&nbsp;\"Thur.\",&nbsp;\"Fri.\",&nbsp;\"Sat.\");\r\n\tprintf(\"%-3s%-3s%-3s%-3s%-3s%-3s%-3s\n\",\"\u65e5\",&nbsp;\"\u4e00\",&nbsp;\"\u4e8c\",&nbsp;\"\u4e09\",&nbsp;\"\u56db\",&nbsp;\"\u4e94\",&nbsp;\"\u516d\");\r\n}\r\n\r\n\/*\u8ba1\u7b97\u8be5\u5e74\u8be5\u6708\u4efd\u4e0e\u5df2\u77e5\u65e5\u5b50\u4e4b\u95f4\u7684\u8ddd\u79bb\u5929\u6570*\/\r\nint&nbsp;date_distance_count(int&nbsp;month,&nbsp;int&nbsp;year)\r\n{\r\n\tint&nbsp;leap_year_count&nbsp;=&nbsp;0;\r\n\tint&nbsp;i;\r\n\tint&nbsp;distance;\r\n\r\n\tif&nbsp;(year&nbsp;&amp;gt;&nbsp;known_year)\r\n\t{\r\n\t\tfor&nbsp;(i=known_year;&nbsp;i&lt;year if leap_year_count&gt;&nbsp;2)\r\n\t\t{\r\n\t\t\tif(((year%4&nbsp;==&nbsp;0)&nbsp;&amp;amp;&amp;amp;&nbsp;(year%100&nbsp;!=&nbsp;0)&nbsp;)&nbsp;||&nbsp;(year%400&nbsp;==&nbsp;0))\r\n\t\t\t{\r\n\t\t\t\tleap_year_count++;\t\t\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\telse\r\n\tif&nbsp;(year&nbsp;==&nbsp;known_year)\r\n\t{\r\n\t\tif&nbsp;(month&nbsp;&amp;gt;&nbsp;2)\r\n\t\t{\r\n\t\t\tleap_year_count&nbsp;=&nbsp;1;\r\n\t\t}\r\n\t}\r\n\t\r\n\r\n\tdistance&nbsp;=&nbsp;(year&nbsp;-&nbsp;known_year)*365&nbsp;+&nbsp;leap_year_count&nbsp;+&nbsp;day_count(month);\r\n\r\n\treturn&nbsp;distance;\t\r\n}\r\n\r\n\/*\u786e\u5b9a\u8be5\u6708\u4efd\u7b2c\u4e00\u5929\u662f\u661f\u671f\u51e0*\/\r\nint&nbsp;makesure_firstday_weekday(int&nbsp;month,&nbsp;int&nbsp;year)\r\n{\r\n\tint&nbsp;date_distance&nbsp;=&nbsp;0;\r\n\tint&nbsp;weekday;\r\n\r\n\tdate_distance&nbsp;=&nbsp;date_distance_count(month,&nbsp;year);\r\n\tweekday&nbsp;=&nbsp;(known_weekday&nbsp;+&nbsp;date_distance)%7;\r\n\r\n\treturn&nbsp;weekday;\t\r\n}\r\n\r\n\/*\u4f9d\u6b21\u6253\u5370\u51fa\u8be5\u6708\u4efd\u7684\u65e5\u5b50*\/\r\nvoid&nbsp;print_in_turn(int&nbsp;month,&nbsp;int&nbsp;firstday,&nbsp;int&nbsp;year)\r\n{\r\n\tint&nbsp;i&nbsp;=&nbsp;1;\r\n\tint&nbsp;weekday;\r\n\r\n\tswitch(firstday)\r\n\t{\r\n\t\tcase&nbsp;Sun:\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;Mon:\r\n\t\t\tprintf(\"%-3s\",\"\");\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;Tues:\r\n\t\t\tprintf(\"%-6s\",\"\");\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;Wed:\r\n\t\t\tprintf(\"%-9s\",\"\");\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;Thur:\r\n\t\t\tprintf(\"%-12s\",\"\");\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;Fri:\r\n\t\t\tprintf(\"%-15s\",\"\");\r\n\t\t\tbreak;\r\n\t\tcase&nbsp;Sat:\r\n\t\t\tprintf(\"%-18s\",\"\");\r\n\t\t\tbreak;\r\n\t}\r\n\r\n\tswitch(month)\r\n\t{\r\n\t\tcase&nbsp;1:\r\n\t\tcase&nbsp;3:\r\n\t\tcase&nbsp;5:\r\n\t\tcase&nbsp;7:\r\n\t\tcase&nbsp;8:\r\n\t\tcase&nbsp;10:\r\n\t\tcase&nbsp;12:\r\n\t\t{\r\n\t\t\tfor(i=0;&nbsp;i&lt;p&gt;\u8fd0\u884c\u6548\u679c\u56fe\uff1a&lt;\/p&gt;\n&lt;p&gt;&lt;img src=\"https:\/\/img.php.cn\/upload\/article\/000\/000\/013\/f907e7d83a4a8a104e1f7ca494f81016-0.jpg\" alt=\"C\u8bed\u8a00\u5b9e\u73b0\u7684\u4e00\u4e2a\u4e07\u5e74\u5386\u5c0f\u7a0b\u5e8f\uff08\u9644\u4ee3\u7801\uff09\"    style=\"max-width:90%\"  style=\"max-width:90%\" title=\"C\u8bed\u8a00\u5b9e\u73b0\u7684\u4e00\u4e2a\u4e07\u5e74\u5386\u5c0f\u7a0b\u5e8f\uff08\u9644\u4ee3\u7801\uff09\"&gt;&lt;\/p&gt;&lt;\/year&gt;&lt;\/stdio.h&gt;<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u4ee5\u4e0a\u5c31\u662fC\u8bed\u8a00\u5b9e\u73b0\u7684\u4e00\u4e2a\u4e07\u5e74\u5386\u5c0f\u7a0b\u5e8f\uff08\u9644\u4ee3\u7801\uff09\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u8fd9\u7bc7\u6587\u7ae0\u4e3b\u8981\u4ecb\u7ecd\u4e86c\u8bed\u8a00\u5b9e\u73b0\u7684\u4e00\u4e2a\u4e07\u5e74\u5386\u5c0f\u7a0b\u5e8f,\u76f8\u5bf9\u7b80\u5355,\u505ac\u8bed\u8a00\u65e5\u671f\u8ba1\u7b97\u7684\u670b\u53cb\u53ef\u4ee5\u53c2\u8003\u4e0b \u8be5\u7a0b\u5e8f\u7b80\u5355\u5730\u8f93\u5165\u4e00\u4e2a\u5e74\u4efd\uff081901\u5e74\u4e4b\u540e\u7684\u5e74\u4efd\uff09\uff0c\u968f\u540e\u7a0b\u5e8f\u8f93\u51fa\u8be5\u5e74\u4efd\u5341\u4e8c\u4e2a\u6708\u7684\u65e5\u5386\u3002 #include&lt;stdio.h&gt; #define&nbsp;Mon&nbsp;&nbsp;&nbsp;1 #define&nbsp;Tues&nbsp;&nbsp;2 #define&nbsp;Wed&nbsp;&nbsp;&nbsp;3 #define&nbsp;Thur&nbsp;&nbsp;4 #define&nbsp;Fri&nbsp;&nbsp;&nbsp;5 #define&nbsp;Sat&nbsp;&nbsp;&nbsp;6 #define&nbsp;Sun&nbsp;&nbsp;&nbsp;0 #define&nbsp;January_days&nbsp;&nbsp;&nbsp;31 #define&nbsp;February_days&nbsp;&nbsp;&nbsp;28 #define&nbsp;March_days&nbsp;&nbsp;&nbsp;&nbsp;31 #define&nbsp;April_days&nbsp;&nbsp;&nbsp;&nbsp;30 #define&nbsp;May_days&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;31 #define&nbsp;June_days&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;30 #define&nbsp;July_days&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;31 #define&nbsp;August_days&nbsp;&nbsp;&nbsp;&nbsp;31 #define&nbsp;September_days&nbsp;&nbsp;30 #define&nbsp;October_days&nbsp;&nbsp;&nbsp;31 #define&nbsp;November_days&nbsp;&nbsp;&nbsp;30 #define&nbsp;December_days&nbsp;&nbsp;&nbsp;31 #define&nbsp;first1month&nbsp;January_days #define&nbsp;first2month&nbsp;January_days+February_days #define&nbsp;first3month&nbsp;January_days+February_days+March_days #define&nbsp;first4month&nbsp;January_days+February_days+March_days+April_days #define&nbsp;first5month&nbsp;January_days+February_days+March_days+April_days+May_days #define&nbsp;first6month&nbsp;January_days+February_days+March_days+April_days+May_days+June_days #define&nbsp;first7month&nbsp;January_days+February_days+March_days+April_days+May_days+June_days&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+July_days #define&nbsp;first8month&nbsp;January_days+February_days+March_days+April_days+May_days+June_days&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+July_days+August_days #define&nbsp;first9month&nbsp;January_days+February_days+March_days+April_days+May_days+June_days&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+July_days+August_days+September_days #define&nbsp;first10month&nbsp;January_days+February_days+March_days+April_days+May_days+June_days&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+July_days+August_days+September_days+October_days #define&nbsp;first11month&nbsp;January_days+February_days+March_days+April_days+May_days+June_days&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+July_days+August_days+September_days+October_days+November_days int&nbsp;known_weekday&nbsp;=&nbsp;Tues; int&nbsp;known_year&nbsp;=&nbsp;1901; int&nbsp;konwn_month&nbsp;=&nbsp;1; int&nbsp;known_day&nbsp;=&nbsp;1; int&nbsp;day_count(int&nbsp;month) { switch(month) { case&nbsp;1:&nbsp;return&nbsp;0;break; case&nbsp;2:&nbsp;return&nbsp;first1month;break; case&nbsp;3:&nbsp;return&nbsp;first2month;break; case&nbsp;4:&nbsp;return&nbsp;first3month;break; case&nbsp;5:&nbsp;return&nbsp;first4month;break; case&nbsp;6:&nbsp;return&nbsp;first5month;break; case&nbsp;7:&nbsp;return&nbsp;first6month;break; case&nbsp;8:&nbsp;return&nbsp;first7month;break; case&nbsp;9:&nbsp;return&nbsp;first8month;break; [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[19],"tags":[],"class_list":["post-28905","post","type-post","status-publish","format-standard","hentry","category-19"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/28905","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=28905"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/28905\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=28905"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=28905"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=28905"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}