Solution :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Author : Md.Shohanur Rahaman | |
/// URI -- 1555 (Functions) | |
#include<stdio.h> | |
#include<math.h> | |
int main() | |
{ | |
int long long x,y,rafa,beto,carl,test,i; | |
while(scanf("%lld",&test)==1){ | |
for(i=1;i<=test;i++){ | |
scanf("%lld %lld",&x,&y); | |
rafa=pow((3*x),2)+pow(y,2); | |
beto=2*pow(x,2)+pow((5*y),2); | |
carl=-100*x+(pow(y,3)); | |
if(rafa>beto && rafa>carl) | |
printf("Rafael ganhou\n"); | |
else if(beto>rafa && beto>carl) | |
printf("Beto ganhou\n"); | |
else | |
printf("Carlos ganhou\n"); | |
} | |
} | |
} |