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. println("雑魚が…俺のちんちんは" + (chimpo_length.toInt() * 2) + "cmだ") //ifの中ではnull安全
  6. }
  7. }
Success #stdin #stdout 0.07s 2181120KB
stdin
15
stdout
あなたのちんちん何cm?
雑魚が…俺のちんちんは30cmだ