Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

$m=2010 $n=1995 Thes are two years i want to be difference of these two years

How can we Calcualte?

share|improve this question
23  
You can use the magical subtraction operator -. – codaddict Dec 7 '10 at 9:57
4  
or a more fancy -($n - $m) – SiGanteng Dec 7 '10 at 9:58
1  
@Manu: Um, difference is 15. – BoltClock Dec 7 '10 at 9:59
6  
@Manu: Why should the difference be 5? Is someone 5 years old if he was born in 1995? – Felix Kling Dec 7 '10 at 10:05
3  
@powtac: Because there is no point calculating the sum or the product. – BoltClock Dec 7 '10 at 10:07
show 10 more comments

closed as not a real question by Felix Kling, Dr.Molle, BoltClock, nico, zerkms Dec 7 '10 at 11:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

12 Answers

if($m == 2010 && $n == 1995)
    return 15;

throw new Exception('Unable to determine difference');
share|improve this answer
2  
Hahahahahahha +1 – BoltClock Dec 7 '10 at 10:15
6  
I couldn't resist. – OJ. Dec 7 '10 at 19:11
real enterprise, man! – phil pirozhkov Dec 8 '10 at 11:52
Yeah, my history is showing isn't it :) – OJ. Dec 8 '10 at 20:33
Six more votes to a Reversal badge, early congrats to you :) – BoltClock Dec 8 '10 at 20:41
show 2 more comments

For this answer I'm assuming you only know + and don't know -

Since PHP uses 2's complement for subtraction, you can do subtraction in terms of addition as:

$m=2010;
$n=1995;

$diff =  $m + (~$n + 1);      

see it

In general

A - B = A + 2's complement of B

and

2's complement = 1's complement + 1

In PHP you use the bitwise operator ~ to get 1's complement.

share|improve this answer
4  
+1 for very subtle humor in an almost-appropriately technical answer. – BoltClock Dec 7 '10 at 10:27

Two thousand and ten minus nineteen ninety-five equals...

Fifteen!

Seriously though,

function difference($m, $n) {
    if ($m > $n) return $m - $n;
    else if ($m < $n) return $n - $m;
    else return 0;
}

echo difference(2010, 1995);

I'm pretty damn positive that the result should be

15

share|improve this answer
1  
+1 for the hover =) – nc3b Dec 7 '10 at 10:02
1  
@nc3b: See here: meta.stackoverflow.com/questions/1191/… – BoltClock Dec 7 '10 at 10:02
Spoiler alerts! – Yi Jiang Dec 7 '10 at 10:07
LOL at the two people who undid their upvotes. – BoltClock Dec 7 '10 at 10:10
5  
abs($m-$n) ... – Dr.Molle Dec 7 '10 at 10:12
show 4 more comments
$m = 2010;
$n = 1995;
$year_difference = $m - $n;
share|improve this answer
You are a Cheater! ;) – powtac Dec 7 '10 at 10:04
@powtac, how so? – systemovich Dec 7 '10 at 10:06
4  
C'mon guys, it's all fun and everything, but downvoting one of the only correct answers is just plain stupid. – nico Dec 7 '10 at 10:16
( $m * $n * ( pow( -1, 2 ) * $m + pow( -1, 3 ) * $n ) ) / ( $m * $n )
share|improve this answer
unfortunately this looks good, but does not work – Thariama Dec 7 '10 at 10:08
but it works for me:) – Quamis Dec 7 '10 at 10:23
Yes, it works, and with abs() it works two way. – styu Dec 9 '10 at 7:11
$i=0;

for($x=$n;$x<=$m;$x++){
    $i++;
}

echo $i;
share|improve this answer
Or for($i=0,$x=$n;$x<=$m;$x++,$i++); – BoltClock Dec 7 '10 at 10:18
or you could even ommit the $i=0: for($x=$n;$x<=$m;$x++,$i++); – Catalin Dec 7 '10 at 10:38

use this any where and solve your problem

    function diff($m, $n) {
            if ($m > $n) 
               return $m - $n;
            else if ($m < $n)
               return $n - $m;
            else return 0;
        }
        $m=2010;
        $n=1995;
        echo diff($m,$n);
share|improve this answer
2  
Think of something original >:( – BoltClock Dec 7 '10 at 10:08
1  
Yeah, this is @BoltClock's code reformatted – Pekka 웃 Dec 7 '10 at 10:12
1  
i just complete @BoltClock's for easy to use. not intentionally – Rahul Chordiya Dec 7 '10 at 10:14
1  
@Rahul a common name: I really don't get it. What could Manu not understand about my code that he can understand in yours? – BoltClock Dec 7 '10 at 10:37
1  
@Rahul a common name, you made it more difficult for a beginner by shortening the function name from difference to diff. How is a beginner supposed to know what diff means? – systemovich Dec 7 '10 at 11:15
show 5 more comments
$diff = count(range($n,$m));

Just to give the option of a slightly different result to 5 or 15

share|improve this answer

Use this math class:

$m=2010; $n=1995;

class mathYear 
  public function substract($value1, $value2) {
     return $value1 - $value2;
  }
}

// Usage 
$mathYear = new mathYear;

$result = $mathYear->substract($m, $n);

echo $result;
share|improve this answer

Here is a new one:

$diff = abs(array_sum(array(-$m, $n)));
share|improve this answer
<?php

$a = 1995;
$b = 2010;
$i = 0;

while ($b !== $a) {
   $i++;
   $a++;
}

printf("%d years difference", $i); // 15 years difference

It works.

share|improve this answer
Mr. Babbage, is that you? – Piskvor Dec 9 '10 at 9:19
@Piskvor One of my favourite quotes: "On two occasions I have been asked, – "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" In one case a member of the Upper, and in the other a member of the Lower House put this question. I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question". Source. – alex Dec 9 '10 at 10:23

This is a more complicated approach, but this will solve the problem:

$n = 1995;
$result = 0;

for($m = 2010; $m > $n; $m--){
    $result++;
}
echo $result;
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.