{"id":108,"date":"2017-04-19T03:59:48","date_gmt":"2017-04-19T03:59:48","guid":{"rendered":"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/?p=108"},"modified":"2017-04-19T07:42:07","modified_gmt":"2017-04-19T07:42:07","slug":"4%e6%9c%8819%e6%97%a5","status":"publish","type":"post","link":"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/?p=108","title":{"rendered":"4\u670819\u65e5\u306e\u7814\u7a76\u5ba4"},"content":{"rendered":"<p>Python \u306e\u52c9\u5f37\u3068\u3057\u3066\u5165\u529b\u3057\u305f\u5024\u304c\u7d20\u6570\u304b\u3069\u3046\u304b\u3092\u5224\u5b9a\u3059\u308b\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u7d44\u3093\u3067\u307f\u307e\u3057\u305f\u3002\u307e\u3060 if \u3068 for \u3057\u304b\u77e5\u3089\u306a\u3044\u306e\u3067\u305d\u306e\u4e8c\u3064\u3092\u99c6\u4f7f\u3057\u3066\u307f\u307e\u3057\u305f\u3002<\/p>\n<pre class=\"brush: python; title: ; notranslate\" title=\"\">\r\nflag = 0\r\nx = int(input('Please enter an integer: '))\r\nif x &lt;= 0:\r\n\tprint('This is negative')\r\nelif x == 1:\r\n\tflag = 0\r\nelif x % 2 == 0:\r\n\tif x == 2:\r\n\t\tflag = 0\r\n\telse:\r\n\t\tflag = 1\r\nelse:\r\n\tfor i in range(x - 2):\r\n\t\tif x % (i + 2) == 0:\r\n\t\t\tflag = 1\r\n\t\t\tbreak\r\nif flag == 0:\r\n\tprint('This is a sosu')\r\nelse:\r\n\tprint('This is not a sosu')\r\n<\/pre>\n<p>\u3053\u3046\u306a\u308b\u3068C \u3068\u3069\u308c\u304f\u3089\u3044\u9055\u3046\u306e\u304b\u6c17\u306b\u306a\u308b\u306e\u3067\u4e45\u3057\u3076\u308a\u306bC \u8a00\u8a9e\u3067\u3082\u540c\u3058\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u7d44\u3093\u3067\u307f\u307e\u3057\u305f\u3002<\/p>\n<pre class=\"brush: cpp; title: ; notranslate\" title=\"\">\r\n#include &lt;stdio.h&gt;\r\nint main(void){\r\n\tint x, i;\r\n\tchar xs[10];\r\n\tint flag = 0;\r\n\tprintf(&quot;Please enter an integer: &quot;);\r\n\tgets(xs);\r\n\tx = atoi(xs);\r\n\tif(x &lt;= 0){\r\n\t\tprintf(&quot;This is negative&quot;);\r\n\t}\r\n\telse if(x == 1){\r\n\t\tflag = 0;\r\n\t}\r\n\telse if(x % 2 == 0){\r\n\t\tif(x == 2){\r\n\t\t\tflag = 0;\r\n\t\t}\r\n\t\telse{\r\n\t\t\tflag = 1;\r\n\t\t}\r\n\t}\r\n\telse{\r\n\t\tfor(i = 0; i &lt; x - 2; i ++){\r\n\t\t\tif(x % (i + 2) == 0){\r\n\t\t\t\tflag = 1;\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tif(flag == 0){\r\n\t\tprintf(&quot;This is a sosu&quot;);\r\n\t\t}\r\n\telse{\r\n\t\tprintf(&quot;This is not a sosu&quot;);\r\n\t}\r\n}\r\n<\/pre>\n<p>\u6bd4\u8f03\u306e\u70ba\u306b\u304e\u3085\u3046\u304e\u3085\u3046\u8a70\u3081\u306b\u3057\u307e\u3057\u305f\u7b11\u3002<br \/>\nC \u306fPython \u306e\u30b3\u30fc\u30c9\u306e2\u500d\u304f\u3089\u3044\u306e\u9577\u3055\u306b\u306a\u308a\u307e\u3057\u305f\u3002Python \u3059\u3063\u304d\u308a\u3057\u3066\u3044\u3044\u611f\u3058\u3067\u3059\u3002  <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Python \u306e\u52c9\u5f37\u3068\u3057\u3066\u5165\u529b\u3057\u305f\u5024\u304c\u7d20\u6570\u304b\u3069\u3046\u304b\u3092\u5224\u5b9a\u3059\u308b\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u7d44\u3093\u3067\u307f\u307e\u3057\u305f\u3002\u307e\u3060 if \u3068 for \u3057\u304b\u77e5\u3089\u306a\u3044\u306e\u3067\u305d\u306e\u4e8c\u3064\u3092\u99c6\u4f7f\u3057\u3066\u307f\u307e\u3057\u305f\u3002 \u3053\u3046\u306a\u308b\u3068C \u3068\u3069\u308c\u304f\u3089\u3044\u9055\u3046\u306e\u304b\u6c17\u306b\u306a\u308b\u306e\u3067\u4e45\u3057\u3076\u308a\u306bC \u8a00 &hellip; <a href=\"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/?p=108\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">4\u670819\u65e5\u306e\u7814\u7a76\u5ba4<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/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":[],"class_list":["post-108","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/index.php?rest_route=\/wp\/v2\/posts\/108","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=108"}],"version-history":[{"count":10,"href":"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/index.php?rest_route=\/wp\/v2\/posts\/108\/revisions"}],"predecessor-version":[{"id":118,"href":"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/index.php?rest_route=\/wp\/v2\/posts\/108\/revisions\/118"}],"wp:attachment":[{"href":"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=108"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=108"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/zairyo.susi.oita-u.ac.jp\/wordpress_tamura\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=108"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}