1013 - The Greatest
Problem Link
A Solution in c
#include<stdio.h>
#include<math.h>
int main()
{
int a,b,s,MaiorAB, max;
scanf("%d %d %d", &a,&b,&s);
MaiorAB=((a+b+abs(a-b))/2);
max = ((MaiorAB + s + abs(MaiorAB - s)) / 2);
printf("%d eh o maior\n",max);
return 0;
}
A Solution in c
#include<stdio.h>
#include<math.h>
int main()
{
int a,b,s,MaiorAB, max;
scanf("%d %d %d", &a,&b,&s);
MaiorAB=((a+b+abs(a-b))/2);
max = ((MaiorAB + s + abs(MaiorAB - s)) / 2);
printf("%d eh o maior\n",max);
return 0;
}





No comments