LoginSignup
1
1

More than 5 years have passed since last update.

Swiftはじめたい...その24 ズンドコキヨシ

Last updated at Posted at 2016-03-15

はやりに乗っかりました。

zd.swift
import Foundation

let z =  ["ズン","ドコ"]
var s = ""
for ( s = "" ; s.characters.count < 9 || s.substringFromIndex(s.endIndex.advancedBy(-10)) != "ズンズンズンズンドコ" ; s += z[ Int(arc4random_uniform(2)) ] ) {}
print("\(s) キ・ヨ・シ!")
  • 最後から10文字とってるんですが、10文字より少ないとエラーになるのでそこだけperl版と違います。
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1