<?php
function count_num_finger( $n )
{
$r = $n % 8;
if ($r == 1)
return $r;
if ($r == 5)
return $r;
if ($r == 0 or $r == 2)
return 2;
if ($r == 3 or $r == 7)
return 3;
if ($r == 4 or $r == 6)
return 4;
}
// Driver Code
$n = 30;
echo(count_num_finger($n));
?>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter