A
A
Alexander Andropov2021-07-31 15:15:42
PHP
Alexander Andropov, 2021-07-31 15:15:42

How to fulfill the Condition and calculate the percentage?

Good afternoon. There are two variables $a = 717.83 and $b = 701.26. I need to calculate the percentage difference between the first and second variable, relative to the $b variable.

If 717.83 subtract 701.26 = 16.57. Which is just over 2% of the number 701.26.

How can I write this condition in PHP ? If $b is subtracted
from the variable $a and the remainder is more than 3%, then the condition is fulfilled. Can it be written in one condition? Thank you in advance.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Slava Rozhnev, 2021-07-31
@LongOf

<?php
$a = 717.83;
$b = 701.26;
  
$percent = (($a - $b) / $b) * 100;

echo $percent;

if ($percent >3 ) {
  echo ' Percent more then 3';
} else {
  echo ' Percent less or equal then 3';
}

Test PHP code here

S
Sergey Yakovlev, 2021-07-31
@sergeyakovlev

if ($a / $b > 1.03) {
    // разница больше 3%
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question