评测信息

运行ID: 43147
src.c: In function 'main':
src.c:5:7: error: expected expression before 'int'
a=int(input());\n
^
src.c:5:7: error: stray '\' in program
src.c:5:21: error: unknown type name 'n'
a=int(input());\n
^
src.c:6:5: error: redeclaration of 'b' with no linkage
b=int(input());\n
^
src.c:4:11: note: previous declaration of 'b' was here
int a,b,c,sum;
^
src.c:6:7: error: expected expression before 'int'
b=int(input());\n
^
src.c:6:7: error: stray '\' in program
src.c:6:21: error: unknown type name 'n'
b=int(input());\n
^
src.c:7:5: error: redeclaration of 'c' with no linkage
c=int(input());\n
^
src.c:4:13: note: previous declaration of 'c' was here
int a,b,c,sum;
^
src.c:7:7: error: expected expression before 'int'
c=int(input());\n
^
src.c:7:7: error: stray '\' in program
src.c:7:21: error: unknown type name 'n'
c=int(input());\n
^
src.c:8:9: error: redeclaration of 'sum' with no linkage
sum=a b c;
^
src.c:4:15: note: previous declaration of 'sum' was here
int a,b,c,sum;
^