评测信息

运行ID: 27547
src.c:1:9: error: empty character constant
x=input('');
^
src.c:1:3: error: initializer element is not constant
x=input('');
^
src.c:2:4: error: request for member 'find' in something not a structure or union
y=x.find( );
^
src.c:3:7: error: expected ']' before ':' token
s1=x[0:y];
^
src.c:3:5: error: subscripted value is neither array nor pointer nor vector
s1=x[0:y];
^
src.c:4:7: error: expected ']' before ':' token
s2=x[y:];
^
src.c:4:5: error: subscripted value is neither array nor pointer nor vector
s2=x[y:];
^
src.c: In function 'print':
src.c:5:1: error: expected '{' at end of input
print(s2,s1)
^