fork download
  1. fun main(args : Array<String>) {
  2. println("あなたのちんちん何cm?")
  3. val chimpo_length = readLine() //chimpo_length: String?(null許容型)
  4. if(chimpo_length != null){
  5. if (chimpo_length.toLong() == 15L){
  6. println("同じだ!")
  7. }
  8. }
  9. }
Success #stdin #stdout 0.07s 2181120KB
stdin
15
stdout
あなたのちんちん何cm?
同じだ!