评测信息

运行ID: 2114
src.c: In function 'main':
src.c:10:7: error: too many arguments to function 'led'
l=led(u,v,h);
^
src.c:5:9: note: declared here
int led(int,int);
^
src.c: In function 'hef':
src.c:17:3: error: 't' undeclared (first use in this function)
{t=u;u=v;v=t;}
^
src.c:17:3: note: each undeclared identifier is reported only once for each function it appears in
src.c:21:2: error: stray '\357' in program
return(v);
^
src.c:21:2: error: stray '\274' in program
src.c:21:2: error: stray '\233' in program
src.c:22:9: error: expected ';' before '}' token
}
^
src.c: At top level:
src.c:23:5: error: conflicting types for 'led'
int led(int u,int v,int h)
^
src.c:5:9: note: previous declaration of 'led' was here
int led(int,int);
^
src.c: In function 'led':
src.c:25:14: error: 'V' undeclared (first use in this function)
return(u*V/h);
^