{"id":110,"date":"2025-06-01T16:22:22","date_gmt":"2025-06-01T08:22:22","guid":{"rendered":"https:\/\/mafaji.com\/?p=110"},"modified":"2025-06-03T13:23:32","modified_gmt":"2025-06-03T05:23:32","slug":"c%e5%ad%a6%e4%b9%a0%e7%a4%ba%e4%be%8b100%e4%b9%8b%e4%ba%8c","status":"publish","type":"post","link":"https:\/\/mafaji.com\/?p=110","title":{"rendered":"C\u5b66\u4e60\u793a\u4f8b100\u4e4b\u4e8c"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\"><strong>\u9898\u76ee\uff1a<\/strong>\u4f01\u4e1a\u53d1\u653e\u7684\u5956\u91d1\u6839\u636e\u5229\u6da6\u63d0\u6210\u3002<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\u5229\u6da6(I)\u4f4e\u4e8e\u6216\u7b49\u4e8e10\u4e07\u5143\u65f6\uff0c\u5956\u91d1\u53ef\u63d010%\uff1b<\/li>\n\n\n\n<li>\u5229\u6da6\u9ad8\u4e8e10\u4e07\u5143\uff0c\u4f4e\u4e8e20\u4e07\u5143\u65f6\uff0c\u4f4e\u4e8e10\u4e07\u5143\u7684\u90e8\u5206\u630910%\u63d0\u6210\uff0c\u9ad8\u4e8e10\u4e07\u5143\u7684\u90e8\u5206\uff0c\u53ef\u63d0\u62107.5%\uff1b<\/li>\n\n\n\n<li>20\u4e07\u523040\u4e07\u4e4b\u95f4\u65f6\uff0c\u9ad8\u4e8e20\u4e07\u5143\u7684\u90e8\u5206\uff0c\u53ef\u63d0\u62105%\uff1b<\/li>\n\n\n\n<li>40\u4e07\u523060\u4e07\u4e4b\u95f4\u65f6\u9ad8\u4e8e40\u4e07\u5143\u7684\u90e8\u5206\uff0c\u53ef\u63d0\u62103%\uff1b<\/li>\n\n\n\n<li>60\u4e07\u5230100\u4e07\u4e4b\u95f4\u65f6\uff0c\u9ad8\u4e8e60\u4e07\u5143\u7684\u90e8\u5206\uff0c\u53ef\u63d0\u62101.5%\uff1b<\/li>\n\n\n\n<li>\u9ad8\u4e8e100\u4e07\u5143\u65f6\uff0c\u8d85\u8fc7100\u4e07\u5143\u7684\u90e8\u5206\u63091%\u63d0\u6210\u3002<\/li>\n<\/ul>\n\n\n\n<p>\u4ece\u952e\u76d8\u8f93\u5165\u5f53\u6708\u5229\u6da6I\uff0c\u6c42\u5e94\u53d1\u653e\u5956\u91d1\u603b\u6570\uff1f<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"c\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">#include &lt;stdio.h>\n\nint main(void)\n{\n    double i = 0;\n    double bonus1, bonus2, bonus3, bonus4, bonus5, bonus6;\n\n    printf(\"\u8bf7\u8f93\u5165\u60a8\u7684\u5229\u6da6\uff1a \");\n    scanf(\"%lf\", &amp;i);\n    bonus1 = 100000 * 0.1;\n    bonus2 = bonus1 + (i - 100000) * 0.075;\n    bonus3 = bonus2 + (i - 200000) * 0.005;\n    bonus4 = bonus3 + (i - 400000) * 0.003;\n    bonus5 = bonus4 + (i - 600000) * 0.0015;\n    bonus6 = bonus5 + (i - 1000000) * 0.001;\n    \n    if (i &lt;= 100000)\n    {\n        printf(\"\u672c\u6708\u9500\u552e\u989d%.2lf\u5143\uff0c\u5956\u91d1\u4e3a%.2lf\u5143\\n\", i, i * 0.1);\n    }\n    else if (i > 100000 &amp;&amp; i &lt;= 200000)\n    {\n        printf(\"\u672c\u6708\u9500\u552e\u989d%.2lf\u5143\uff0c\u5956\u91d1\u4e3a%.2lf\u5143\\n\", i, bonus2);\n    }\n    else if (i > 200000 &amp;&amp; i &lt;= 400000)\n    {\n        printf(\"\u672c\u6708\u9500\u552e\u989d%.2lf\u5143\uff0c\u5956\u91d1\u4e3a%.2lf\u5143\\n\", i, bonus3);\n    }\n    else if (i > 400000 &amp;&amp; i &lt;= 600000)\n    {\n        printf(\"\u672c\u6708\u9500\u552e\u989d%.2lf\u5143\uff0c\u5956\u91d1\u4e3a%.2lf\u5143\\n\", i, bonus4);\n    }\n    else if (i > 600000 &amp;&amp; i &lt;= 1000000)\n    {\n        printf(\"\u672c\u6708\u9500\u552e\u989d%.2lf\u5143\uff0c\u5956\u91d1\u4e3a%.2lf\u5143\\n\", i, bonus5);\n    }\n    else if (i > 1000000)\n    {\n        printf(\"\u672c\u6708\u9500\u552e\u989d%.2lf\u5143\uff0c\u5956\u91d1\u4e3a%.2lf\u5143\\n\", i, bonus6);\n    }\n    return 0;\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u9898\u76ee\uff1a\u4f01\u4e1a\u53d1\u653e\u7684\u5956\u91d1\u6839\u636e\u5229\u6da6\u63d0\u6210\u3002 \u4ece\u952e\u76d8\u8f93\u5165\u5f53\u6708\u5229\u6da6I\uff0c\u6c42\u5e94\u53d1\u653e\u5956\u91d1\u603b\u6570\uff1f<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[14],"class_list":["post-110","post","type-post","status-publish","format-standard","hentry","category-code","tag-c"],"_links":{"self":[{"href":"https:\/\/mafaji.com\/index.php?rest_route=\/wp\/v2\/posts\/110","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mafaji.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mafaji.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mafaji.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mafaji.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=110"}],"version-history":[{"count":2,"href":"https:\/\/mafaji.com\/index.php?rest_route=\/wp\/v2\/posts\/110\/revisions"}],"predecessor-version":[{"id":112,"href":"https:\/\/mafaji.com\/index.php?rest_route=\/wp\/v2\/posts\/110\/revisions\/112"}],"wp:attachment":[{"href":"https:\/\/mafaji.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=110"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mafaji.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=110"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mafaji.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=110"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}