write a program to find the difference between small medium and large number
Answers
Answered by
0
Answer:
#include <stdio.h>
#include <stdlib.h>
int main(void){
printf("%d",test(4, 5, 6));
printf("\n%d",test(7, 12, 13));
printf("\n%d",test(-1, 0, 1));
}
int test(int x, int y, int z)
{
if (x > y && x > z && y > z) return x - y == y - z;
if (x > y && x > z && z > y) return x - z == z - y;
if (y > x && y > z && x > z) return y - x == x - z;
if (y > x && y > z && z > x) return y - z == z - x;
if (z > x && z > y && x > y) return z - x == x - y;
return z - y == y - x
Similar questions
English,
1 month ago
Hindi,
4 months ago
Computer Science,
4 months ago
Chemistry,
10 months ago
Computer Science,
10 months ago