Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

이태균/LittleAOI/시간맞추기

From ZeroWiki

소 감

코 드

package main

import (
	"time"
	"fmt"
)

func main(){
	st := time.Now().Second()

	fmt.Scanln()
	et :=time.Now().Second()


	if (et-st) == 8 {
		fmt.Println("you win!!")
	}else {
		fmt.Println("your time is off.")
	}

}

LittleAOI 이태균/LittleAOI 시간맞추기