{"id":301,"date":"2024-09-20T09:03:51","date_gmt":"2024-09-20T09:03:51","guid":{"rendered":"https:\/\/xcode15.shimayugu.jp\/?p=301"},"modified":"2024-12-29T06:53:29","modified_gmt":"2024-12-28T21:53:29","slug":"%e6%96%b0swift%e3%81%a7%e8%a1%8c%e3%81%93%e3%81%86-%e7%ac%ac%ef%bc%92%ef%bc%99%e5%9b%9e%e3%80%8c%e3%83%9d%e3%83%bc%e3%82%ab%e3%83%bc%ef%bc%91%ef%bc%94%e3%80%8d%e3%80%80%e7%94%b0%e9%83%a8%e4%ba%95","status":"publish","type":"post","link":"https:\/\/xcode15.shimayugu.jp\/?p=301","title":{"rendered":"\u65b0Swift\u3067\u884c\u3053\u3046&#8230;\u7b2c\uff12\uff19\u56de\u300c\u30dd\u30fc\u30ab\u30fc\uff11\uff14\u300d\u3000\u7530\u90e8\u4e95\u4fdd"},"content":{"rendered":"\n<p><a href=\"https:\/\/shimayugu.sakura.ne.jp\/?p=2473\">\u76ee\u6b21<\/a>\u3000<a href=\"https:\/\/xcode15.shimayugu.jp\/?p=774\">\u89e3\u8aac\u7de8<\/a><\/p>\n\n\n\n<p>\u3000yaku\u95a2\u6570\u3067\u3001\u5f97\u70b9\u306e\u4ed6\u306b\u5f79\u540d\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-swift\" data-lang=\"Swift\" data-line=\"1,11,16,19,22,25,28,74,77,82,85,91,94,98,102-104,139-141\" data-show-lang=\"1\"><code>    func yaku() -&gt; (Int, String) {\n        var ck = 0\n        for i in 0 ..&lt; 5 {\n            for j in i + 1 ..&lt; 5 {\n                if eachCard[i].tag % 13 == eachCard[j].tag % 13 {\n                    ck += 1\n                }\n            }\n        }\n        var mul = 0\n        var msg:String = &quot;&quot;\n        if ck &gt; 0 {\n            switch ck {\n            case 1:\n                mul = 1\n                msg = &quot;\u30ef\u30f3\u30da\u30a2&quot;\n            case 2:\n                mul = 2\n                msg = &quot;\u30c4\u30fc\u30da\u30a2&quot;\n            case 3:\n                mul = 3\n                msg = &quot;\u30b9\u30ea\u30fc\u30ab\u30fc\u30c9&quot;\n            case 4:\n                mul = 6\n                msg = &quot;\u30d5\u30eb\u30cf\u30a6\u30b9&quot;\n            case 6:\n                mul = 8\n                msg = &quot;\u30d5\u30a9\u30fc\u30ab\u30fc\u30c9&quot;\n            default:\n                mul = 0\n            }\n        } else {\n            var chk = true\n            let mark:Int = eachCard[0].tag \/ 13\n            for i in 1 ..&lt; 5 {\n                if mark != eachCard[i].tag \/ 13 {\n                    chk = false\n                    break\n                }\n            }\n            var min = 0\n            var max = 0\n            min = eachCard[0].tag % 13\n            max = eachCard[0].tag % 13\n            var isAce:Bool = false\n            var isKing:Bool = false\n            for i in 0 ..&lt; 5 {\n                if eachCard[i].tag % 13 == 0 {\n                    isAce = true\n                }\n                if eachCard[i].tag % 13 == 12 {\n                    isKing = true\n                }\n            }\n            let up = isAce && isKing\n            for i in 1 ..&lt; 5 {\n                var val = eachCard[i].tag % 13\n                if up {\n                    if val &lt; 4 {\n                        val = val + 13\n                    }\n                }\n                if val &lt; min {\n                    min = val\n                }\n                if max &lt; val {\n                    max = val\n                }\n            }\n            if max - min == 4 {\n                if max == 13 { \n                    if chk {\n                        mul = 10\n                        msg = &quot;\u30ed\u30a4\u30e4\u30eb\u30b9\u30c8\u30ec\u30fc\u30c8\u30d5\u30e9\u30c3\u30b7\u30e5 &quot;\n                    } else {\n                        mul = 9\n                        msg = &quot;\u30ed\u30a4\u30e4\u30eb\u30b9\u30c8\u30ec\u30fc\u30c8&quot;\n                    }\n                } else {\n                    if chk { \n                        mul = 7\n                        msg = &quot;\u30b9\u30c8\u30ec\u30fc\u30c8\u30d5\u30e9\u30c3\u30b7\u30e5&quot;\n                    } else {\n                        mul = 4\n                        msg = &quot;\u30b9\u30c8\u30ec\u30fc\u30c8&quot;\n                    }\n                }\n            } else {\n                if chk {\n                    mul = 5\n                    msg = &quot;\u30d5\u30e9\u30c3\u30b7\u30e5&quot;\n                } else {\n                    mul = 0\n                    msg = &quot;\u30d6\u30bf&quot;\n                }\n            }\n        }\n        return (mul, msg)\n    }\n    \n    func flush() {\n        var mul = 0\n        var msg: String \n        (mul, msg) = yaku()\n        var title: String\n        title = msg\n        var realMul: Int\n        realMul = mul - beforeMul\n        if realMul &lt; 0 { \n            realMul = 0\n        }\n        point = point + betPoint * realMul\n        betPoint = 0\n\n        if point == 0 {\n            title = &quot;\u30b2\u30fc\u30e0\u30aa\u30fc\u30d0\u30fc &quot;\n            msg = &quot;\u30b2\u30fc\u30e0\u30aa\u30fc\u30d0\u30fc &quot;\n            point = 10\n        }\n        let alert = UIAlertController()\n        alert.title = title\n        alert.message = msg + &quot;\u3067\u3059&quot;\n        alert.addAction(UIAlertAction(title: &quot;OK&quot;, style: .default))\n        present(alert, animated: true, completion: nil)\n        display()\n    }\n\n    var beforeMul = 0\n\n    @IBAction func btnGoTouch(_ sender: Any) {\n        for i in 0 ..&lt; EnumCard.Count {\n            check[i] = false\n        }\n        count = EnumCard.Count\n        for i in 0 ..&lt; 5 {\n            put(i: i)\n        }\n        btnRe.isEnabled = true\n        var msg:String\n        (beforeMul, msg) = yaku()\n        lblBefore.text = &quot;\u57fa\u6e96:&quot; + msg + &quot;:&quot; +  beforeMul.description\n    }\n<\/code><\/pre><\/div>\n\n\n\n<p>\u3000\u6b21\u56de\u306f\u3001\u30c8\u30e9\u30f3\u30d7\u306e\u57fa\u672c\u90e8\u5206\u3092\u5225\u30af\u30e9\u30b9\u306b\u5916\u51fa\u3057\u3057\u3088\u3046\u3068\u601d\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3000\u30d0\u30b0\u304c\u3042\u308a\u307e\u3057\u305f\u3002<a href=\"https:\/\/xcode15.shimayugu.jp\/?p=238\">\u7b2c\uff12\uff13\u56de\u300c\u30dd\u30fc\u30ab\u30fc\uff18\u300d<\/a>\u306e\u6700\u5f8c\u306e\u65b9\u3092\u53c2\u7167\u3057\u3066\u4e0b\u3055\u3044\u3002<\/p>\n\n\n\n<p><a href=\"https:\/\/shimayugu.sakura.ne.jp\/?p=2473\">\u76ee\u6b21<\/a>\u3000<a href=\"https:\/\/xcode15.shimayugu.jp\/?p=774\">\u89e3\u8aac\u7de8<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u76ee\u6b21\u3000\u89e3\u8aac\u7de8 \u3000yaku\u95a2\u6570\u3067\u3001\u5f97\u70b9\u306e\u4ed6\u306b\u5f79\u540d\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u307e\u3059\u3002 \u3000\u6b21\u56de\u306f\u3001\u30c8\u30e9\u30f3\u30d7\u306e\u57fa\u672c\u90e8\u5206\u3092\u5225\u30af\u30e9\u30b9\u306b\u5916\u51fa\u3057\u3057\u3088\u3046\u3068\u601d\u3044\u307e\u3059\u3002 \u3000\u30d0\u30b0\u304c\u3042\u308a\u307e\u3057\u305f\u3002\u7b2c\uff12\uff13\u56de\u300c\u30dd\u30fc\u30ab\u30fc\uff18\u300d\u306e\u6700\u5f8c\u306e\u65b9\u3092\u53c2\u7167\u3057\u3066\u4e0b\u3055\u3044\u3002 \u76ee\u6b21\u3000\u89e3\u8aac\u7de8<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[],"class_list":["post-301","post","type-post","status-publish","format-standard","hentry","category-swift"],"_links":{"self":[{"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=\/wp\/v2\/posts\/301","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=301"}],"version-history":[{"count":14,"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=\/wp\/v2\/posts\/301\/revisions"}],"predecessor-version":[{"id":1023,"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=\/wp\/v2\/posts\/301\/revisions\/1023"}],"wp:attachment":[{"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=301"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=301"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=301"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}