1 solutions
-
0
C :
#include <stdio.h> int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); int max=a; if(max<b) max=b; if(max<c) max=c; printf("%d\n",max); return 0;}C++ :
#include<stdio.h> int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); if(b>a) a=b; if(c>a) a=c; printf("%d\n",a); return 0; }
- 1
Information
- ID
- 16523
- Time
- 1000ms
- Memory
- 128MiB
- Difficulty
- (None)
- Tags
- # Submissions
- 0
- Accepted
- 0
- Uploaded By