Write a PHP program which reads an integer n and find the number of combinations of a,b,c and d (0 ≤ a,b,c,d ≤ 9) where (a + b + c + d) will be equal to n.
Input:n (1 ≤ n ≤ 50) .
<?php while (($input = trim(fgets(STDIN))) !== '') { $input = intval($input); $count = 0; for ($i=0; $i < 10; $i++) { for ($j=0; $j < 10; $j++) { for ($k=0; $k < 10; $k++) { for ($l=0; $l < 10; $l++) { if ($i + $j + $k +$l === $input) { $count++; } } } } } echo "\nNumber of combinations of a,b,c and d: "; echo $count."\n"; } ?>
Sample Output:
Number of combinations of a,b,c and d: 56
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer