w3resource

PHP Exercises: Check if a given non-negative given number is a multiple of 3 or 7, but not both

PHP Basic Algorithm: Exercise-42 with Solution

Write a PHP program to check if a given non-negative given number is a multiple of 3 or 7, but not both.

Sample Solution:

PHP Code :

<?php
// Define a function that checks if a number satisfies an exclusive OR (^) condition involving modulo operations
function test($n)
{
    // Check if the remainder of $n divided by 3 is 0 XOR the remainder of $n divided by 7 is 0
    return ($n % 3 == 0) ^ ($n % 7 == 0);
}

// Test the function with different values
var_dump(test(3));
var_dump(test(7));
var_dump(test(21));
?>

Sample Output:

int(1)
int(1)
int(0)

Visual Presentation:

PHP Basic Algorithm Exercises: Check if a given non-negative given number is a multiple of 3 or 7, but not both.

Flowchart:

Flowchart: Check if a given non-negative given number is a multiple of 3 or 7, but not both.

PHP Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a PHP program to test if a given non-negative number is a multiple of 13 or it is one more than a multiple of 13.
Next: Write a PHP program to check if a given number is within 2 of a multiple of 10.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.