[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]


    Search the Q&A Archives


...possible to find the greater of two numbers without...

<< Back to: comp.lang.c FAQ list Table of Contents

Question by maddy
Submitted on 12/14/2003
Related FAQ: comp.lang.c FAQ list Table of Contents
Rating: Rate this question: Vote
is it possible to find the greater of two numbers without using any relational operators at all ?!!...


Answer by santhu
Submitted on 12/29/2003
Rating:  Rate this answer: Vote
this code works only for integers

if((int)m/n)
{
printf("m is greater");
}
else
{
printf("n is greater");
}

 

Answer by student
Submitted on 6/23/2004
Rating:  Rate this answer: Vote
#define max(a,b) (((a+b)+abs(a-b))/2)
#define min(a,b) (((a+b)-abs(a-b))/2)

 

Answer by haris
Submitted on 9/9/2004
Rating: Not yet rated Rate this answer: Vote
//This works with 32 bit numbers.
//Use appropriate mask otherwise.
((a-b) & 0x40000000)?printf("b is greater"):printf("a is greater");

 

Answer by Sivaramakrishnan
Submitted on 1/23/2006
Rating: Not yet rated Rate this answer: Vote
#include<stdio.h>
#include<math.h>
int main()
{
int i,j;
scanf("%d%d",&a,&b);
printf("Greater Number is %d",(a+b+abs(a-b))/2);

return 0;
}

 

Your answer will be published for anyone to see and rate.  Your answer will not be displayed immediately.  If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.


Your name or nickname:
If you'd like to create a new account or access your existing account, put in your password here:
Your answer:

FAQS.ORG reserves the right to edit your answer as to improve its clarity.  By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer.

 

FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

 

<< Back to: comp.lang.c FAQ list Table of Contents


[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]

© 2008 FAQS.ORG. All rights reserved.