제출 #2174

#제출 시각아이디문제언어결과실행 시간메모리
2174minchurl개미 (GA4_ant)C++98
컴파일 에러
0 ms0 KiB
#include<stdio.h> int t; long long x,y,z,dap; FILE *in,*out; void input(); void solve(); void output(); int main(){ in=stdio;//fopen("input.txt","r"); out=stdout;//fopen("output.txt","w"); input(); return 0; } void input(){ int i; fscanf(in,"%d",&t); for(i=0;i<t;i++){ fscanf(in,"%d %d %d",&x,&y,&z); solve(); output(); } } void solve(){ long long a,b,c; dap=0; a=(x*x)+((y+z)*(y+z)); b=(y*y)+((x+z)*(x+z)); c=(z*z)+((x+y)*(x+y)); if(a>b){ if(a>c){ dap=a; }else{ dap=c; } }else{ if(b>c){ dap=b; }else{ dap=c; } } } void output(){ fprintf(out,"%lld\n",dap); }

컴파일 시 표준 에러 (stderr) 메시지

ant.cpp: In function 'int main()':
ant.cpp:9: error: 'stdio' was not declared in this scope
ant.cpp: In function 'void input()':
ant.cpp:18: warning: format '%d' expects type 'int*', but argument 3 has type 'long long int*'
ant.cpp:18: warning: format '%d' expects type 'int*', but argument 4 has type 'long long int*'
ant.cpp:18: warning: format '%d' expects type 'int*', but argument 5 has type 'long long int*'