6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Swift3でPPAP

Last updated at Posted at 2016-11-03

PPAPのズンドコキヨシっぽいやつをSwiftでやってみました。

PPAP.swift
import Foundation

var flag = 0
print("PPAP")//なんとなく入れてみた。最初に言うので。
sleep(1)//なんとなく入れてみた

main: while true {
    let random = arc4random_uniform(3)
    print(["ペン", "パイナップル", "アップル"][Int(random)])
    switch (random, flag){
    case (0, 0):    flag = 1;
    case (1, 1):    flag = 2;
    case (2, 2):    flag = 3;
    case (0, 3):    print("Pen Pineapple Apple Pen!!!"); break main;//最後にもう一回言うので。
    default:        flag = 0;
    }
}

あとはいつも通りswiftcでコンパイルです。

#コメント
最近自分の投稿が途絶えたので久しぶりに何かネタないかなと思ったんですが、これくらいしかありませんでした。これはただの暇つぶしです。

この記事を書いた時はまだ誰もこんなことしてなかったんですが、知らないうちにPPAPなんてタグもできちゃってるんですね〜。すごい。
もう今ではズンドコキヨシとは別としてPPAPが確立してるんですかね。PPAPキヨシとは呼ばれてないんですね...

6
5
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
6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?