{"id":547,"date":"2022-09-26T23:33:46","date_gmt":"2022-09-26T15:33:46","guid":{"rendered":"https:\/\/qaqaq.top\/?p=547"},"modified":"2022-11-27T12:40:00","modified_gmt":"2022-11-27T04:40:00","slug":"%e9%9d%a2%e5%90%91%e5%af%b9%e8%b1%a1%e4%b8%8a-%e8%af%be%e5%90%8e%e7%bb%83%e4%b9%a03%ef%bc%9a%e6%96%b9%e6%b3%95%e5%a3%b0%e6%98%8e","status":"publish","type":"post","link":"https:\/\/qaqaq.top\/?p=547","title":{"rendered":"\u9762\u5411\u5bf9\u8c61(\u4e0a)-\u8bfe\u540e\u7ec3\u4e603\uff1a\u65b9\u6cd5\u58f0\u660e"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>package top.qaqaq.java.P191;\r\n\/*\r\n * 3.1 \u7f16\u5199\u7a0b\u5e8f\uff0c\u58f0\u660e\u4e00\u4e2amethod\u65b9\u6cd5\uff0c\u5728\u65b9\u6cd5\u4e2d\u6253\u5370\u4e00\u4e2a10*8 \u7684*\u578b\u77e9\u5f62\uff0c\u5728main\u65b9\u6cd5\u4e2d\u8c03\u7528\u8be5\u65b9\u6cd5\u3002\r\n * 3.2 \u4fee\u6539\u4e0a\u4e00\u4e2a\u7a0b\u5e8f\uff0c\u5728method\u65b9\u6cd5\u4e2d\uff0c\u9664\u6253\u5370\u4e00\u4e2a10*8\u7684*\u578b\u77e9\u5f62\u5916\uff0c\u518d\u8ba1\u7b97\u8be5\u77e9\u5f62\u7684\u9762\u79ef\uff0c\r\n * \u5e76\u5c06\u5176\u4f5c\u4e3a\u65b9\u6cd5\u8fd4\u56de\u503c\u3002\u5728main\u65b9\u6cd5\u4e2d\u8c03\u7528\u8be5\u65b9\u6cd5\uff0c\u63a5\u6536\u8fd4\u56de\u7684\u9762\u79ef\u503c\u5e76\u6253\u5370\u3002\r\n * 3.3 \u4fee\u6539\u4e0a\u4e00\u4e2a\u7a0b\u5e8f\uff0c\u5728method\u65b9\u6cd5\u63d0\u4f9bm\u548cn\u4e24\u4e2a\u53c2\u6570\uff0c\u65b9\u6cd5\u4e2d\u6253\u5370\u4e00\u4e2am*n\u7684*\u578b\u77e9\u5f62\uff0c\r\n * \u5e76\u8ba1\u7b97\u8be5\u77e9\u5f62\u7684\u9762\u79ef\uff0c \u5c06\u5176\u4f5c\u4e3a\u65b9\u6cd5\u8fd4\u56de\u503c\u3002\u5728main\u65b9\u6cd5\u4e2d\u8c03\u7528\u8be5\u65b9\u6cd5\uff0c\u63a5\u6536\u8fd4\u56de\u7684\u9762\u79ef\u503c\u5e76\u6253\u5370\u3002\r\n * \r\n * \r\n * \r\n *\/\r\npublic class Exer3Test {\r\n\tpublic static void main(String&#91;] args) {\r\n\t\tExer3Test test = new Exer3Test();\r\n\t\t\r\n\t\t\/\/3.1\u6d4b\u8bd5\r\n\/\/\t\ttest.method();\r\n\t\t\r\n\t\t\/\/3.2\u6d4b\u8bd5\r\n\t\t\/\/\u65b9\u5f0f\u4e00\uff1a\r\n\/\/\t\tint area = test.method();\r\n\/\/\t\tSystem.out.println(\"\u9762\u79ef\u4e3a\uff1a\" + area);\r\n\t\t\r\n\t\t\/\/\u65b9\u5f0f\u4e8c\uff1a\r\n\/\/\t\tSystem.out.println(test.method());\r\n\t\t\r\n\t\t\/\/3.3\u6d4b\u8bd5\r\n\t\tint area = test.method(12, 10);\r\n\t\tSystem.out.println(\"\u9762\u79ef\u4e3a\uff1a\" + area);\r\n\t\t\r\n\t}\r\n\t\r\n\t\/\/3.1\r\n\/\/\tpublic void method() {\r\n\/\/\t\tfor(int i = 0; i &lt; 10; i++) {\r\n\/\/\t\t\tfor(int j = 0; j &lt; 8; j++) {\r\n\/\/\t\t\t\tSystem.out.print(\"* \");\r\n\/\/\t\t\t}\r\n\/\/\t\t\tSystem.out.println();\r\n\/\/\t\t}\r\n\/\/\t}\r\n\t\r\n\t\/\/3.2\r\n\/\/\tpublic int method() {\r\n\/\/\t\tfor(int i = 0; i &lt; 10; i++) {\r\n\/\/\t\t\tfor(int j = 0; j &lt; 8; j++) {\r\n\/\/\t\t\t\tSystem.out.print(\"* \");\r\n\/\/\t\t\t}\r\n\/\/\t\t\tSystem.out.println();\r\n\/\/\t\t}\r\n\t\r\n\/\/\t\treturn 10 * 8;\r\n\/\/\t}\r\n\t\r\n\t\/\/3.3\r\n\tpublic int method(int m,int n) {\r\n\t\tfor(int i = 0; i &lt; m; i++) {\r\n\t\t\tfor(int j = 0; j &lt; n; j++) {\r\n\t\t\t\tSystem.out.print(\"* \");\r\n\t\t\t}\r\n\t\t\tSystem.out.println();\r\n\t\t}\r\n\t\t\r\n\t\treturn m * n;\r\n\t}\r\n\r\n}\r\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[46],"class_list":["post-547","post","type-post","status-publish","format-standard","hentry","category-java-code","tag-java"],"_links":{"self":[{"href":"https:\/\/qaqaq.top\/index.php?rest_route=\/wp\/v2\/posts\/547"}],"collection":[{"href":"https:\/\/qaqaq.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/qaqaq.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/qaqaq.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/qaqaq.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=547"}],"version-history":[{"count":1,"href":"https:\/\/qaqaq.top\/index.php?rest_route=\/wp\/v2\/posts\/547\/revisions"}],"predecessor-version":[{"id":548,"href":"https:\/\/qaqaq.top\/index.php?rest_route=\/wp\/v2\/posts\/547\/revisions\/548"}],"wp:attachment":[{"href":"https:\/\/qaqaq.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=547"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/qaqaq.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=547"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/qaqaq.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=547"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}