w3resource

PHP Exercises: Check whether two given integer values are in the range 20..50 inclusive

PHP Basic Algorithm: Exercise-16 with Solution

Write a PHP program to check whether two given integer values are in the range 20..50 inclusive. Return true if 1 or other is in the said range otherwise false.

Sample Solution:

PHP Code :

<?php
// Define a function that checks if at least one of the given pairs of values violates the specified conditions
function test($x, $y) 
{
    return ($x <= 20 || $y >= 50) || ($y <= 20 || $x >= 50);
}

// Test the function with various pairs of values
var_dump(test(20, 84));
var_dump(test(14, 50));
var_dump(test(11, 45));
var_dump(test(25, 40));
?>

Sample Output:

bool(true)
bool(true)
bool(true)
bool(false)

Visual Presentation:

PHP Basic Algorithm Exercises: Check whether two given integer values are in the range 20..50 inclusive.

Flowchart:

Flowchart: Check whether two given integer values are in the range 20..50 inclusive.

PHP Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a PHP program to check whether three given integer values are in the range 20..50 inclusive. Return true if 1 or more of them are in the said range otherwise false.
Next: Write a PHP program to check if a string 'yt' appears at index 1 in a given string. If it appears return a string without 'yt' otherwise return the original string.

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.