Created
August 30, 2018 16:10
-
-
Save sokcuri/b34ce5e32c1b9cb22a2e001e5cd3c5df to your computer and use it in GitHub Desktop.
Bat 파일로 60/40 확률 동전 던지기 도박 프로그램을 만들기
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
SET /A test=%RANDOM% %% 100 | |
IF %test% leq 60 ( | |
echo 앞면 | |
) else ( | |
echo 뒷면 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment