-
Notifications
You must be signed in to change notification settings - Fork 0
/
arithmatic.php
74 lines (58 loc) · 1.31 KB
/
arithmatic.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
function error($a, $b, $is_not_numeric = true) {
if ($is_not_numeric) {
return 'ERROR: $a and/or $b are not numeric values, enter numbers.' . PHP_EOL;
} else {
return 'ERROR: Please enter denominator < or > 0.' . PHP_EOL;
}
}
function add($a, $b) {
if (is_numeric($a) && is_numeric($b)) {
return $a + $b;
} else {
return error($a, $b);
}
}
// $sum = add(2, 'banana');
// echo $sum . PHP_EOL;
function subtract($a, $b) {
if (is_numeric($a) && is_numeric($b)) {
return $a - $b;
} else {
return error($a, $b);
}
}
// $sub_answer = subtract(4, 'banana');
// echo $sub_answer . PHP_EOL;
function mult($a, $b) {
if (is_numeric($a) && is_numeric($b)) {
return $a * $b;
} else {
return error($a, $b);
}
}
// $multi_answer = mult(4, 3);
// echo $multi_answer . PHP_EOL;
function remain($a,$b) {
if (is_numeric($a) && is_numeric($b)) {
return $a % $b;
} else {
return error($a, $b);
}
}
// $remainder = remain(5,2);
// echo $remainder . PHP_EOL;
function divide($a, $b) {
if (is_numeric($a) && is_numeric($b)) {
if ($b == 0) {
return error($a, $b, false);
} else {
return $a / $b . PHP_EOL;
}
} else {
error($a, $b);
}
}
$div_answer = divide(4, 0);
echo $div_answer . PHP_EOL;
?>