Wrong Answer
Code
#include <stdio.h>
int main()
{
int x=1,y=2,z=3;
scanf("%d %d %d",&x,&y,&z);
printf("Enter your value: ");
if (x>y && x<z){
printf("%d",x);
}
else if(y>x && y<z){
printf("%d",y);
}
else if(z<x && z<y){
printf("%d",z);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1105 Ohh that gcd again
- Contest
- LUCC Presents Kick & Code Intra LU Programming Contest
- Language
- C11 (GCC 13.2.0)
- Submit At
- 2025-09-01 07:43:17
- Judged At
- 2025-09-01 07:43:17
- Judged By
- Score
- 0
- Total Time
- 0ms
- Peak Memory
- 344.0 KiB