Created
June 27, 2025 12:17
-
-
Save ichsanputr/ca20e35e7eec878852ef3c86ea10f562 to your computer and use it in GitHub Desktop.
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
<?php | |
$점수 = 80; | |
if ($점수 >= 90) { | |
echo "우수합격입니다!"; | |
} elseif ($점수 >= 70) { | |
echo "합격입니다!"; | |
} else { | |
echo "불합격입니다. 다시 도전하세요!"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment