Write a function named isRightEquation() that takes three numbers and returns true if the product of the first two numbers is equal to the third number. Otherwise, it should return false.
Use the provided template.
Write a function named isRightEquation() that takes three numbers and returns true if the product of the first two numbers is equal to the third number. Otherwise, it should return false.
Use the provided template.
Sample Input 1:
2
3
6Sample Output 1:
trueSample Input 2:
2
3
7Sample Output 2:
falseCreate a free account to access the full topic