HEX
Server: Apache/2.4.46 (Win64) OpenSSL/1.1.1j PHP/8.4.25
System: Windows NT DESKTOP-4TAV2RJ 10.0 build 19045 (Windows 10) AMD64
User: fred (0)
PHP: 8.4.25
Disabled: NONE
Upload Files
File: C:/xampp/htdocs/ACProof/percentile.php
<?php
$arr =
array(12,65,23,60,69,9,15,56,67,3,52,12,10,177,67,97,37,87,67,77,68,70);
sort($arr);
$score95 = $arr[round((95/100) * count($arr) -0.5)];
echo $score95; // 90
?>