Skip to content

Instantly share code, notes, and snippets.

@ichsanputr
Created June 27, 2025 12:17
Show Gist options
  • Save ichsanputr/ca20e35e7eec878852ef3c86ea10f562 to your computer and use it in GitHub Desktop.
Save ichsanputr/ca20e35e7eec878852ef3c86ea10f562 to your computer and use it in GitHub Desktop.
<?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