评测信息

运行ID: 7723
src.c:3:5: error: initializer element is not constant
c1=getchar();
^
src.c:4:5: error: initializer element is not constant
c2=getchar();
^
src.c:5:5: error: initializer element is not constant
c3=getchar();
^
src.c:6:5: error: initializer element is not constant
c4=getchar();
^
src.c:7:5: error: initializer element is not constant
c5=getchar();
^
src.c:8:2: error: redefinition of 'c1'
c1=c1 4;
^
src.c:3:2: note: previous definition of 'c1' was here
c1=getchar();
^
src.c:8:5: error: initializer element is not constant
c1=c1 4;
^
src.c:9:2: error: redefinition of 'c2'
c2=c2 4;
^
src.c:4:2: note: previous definition of 'c2' was here
c2=getchar();
^
src.c:9:5: error: initializer element is not constant
c2=c2 4;
^
src.c:10:2: error: redefinition of 'c3'
c3=c3 4;
^
src.c:5:2: note: previous definition of 'c3' was here
c3=getchar();
^
src.c:10:5: error: initializer element is not constant
c3=c3 4;
^
src.c:11:2: error: redefinition of 'c4'
c4=c4 4;
^
src.c:6:2: note: previous definition of 'c4' was here
c4=getchar();
^
src.c:11:5: error: initializer element is not constant
c4=c4 4;
^
src.c:12:2: error: redefinition of 'c5'
c5=c5 4;
^
src.c:7:2: note: previous definition of 'c5' was here
c5=getchar();
^
src.c:12:5: error: initializer element is not constant
c5=c5 4;
^
src.c:13:9: error: expected declaration specifiers or '...' before string constant
printf("%c%c%c%c%c\n",c1,c2,c3,c4,c5);
^
src.c:13:24: error: expected declaration specifiers or '...' before 'c1'
printf("%c%c%c%c%c\n",c1,c2,c3,c4,c5);
^
src.c:13:27: error: expected declaration specifiers or '...' before 'c2'
printf("%c%c%c%c%c\n",c1,c2,c3,c4,c5);
^
src.c:13:30: error: expected declaration specifiers or '...' before 'c3'
printf("%c%c%c%c%c\n",c1,c2,c3,c4,c5);
^
src.c:13:33: error: expected declaration specifiers or '...' before 'c4'
printf("%c%c%c%c%c\n",c1,c2,c3,c4,c5);
^
src.c:13:36: error: expected declaration specifiers or '...' before 'c5'
printf("%c%c%c%c%c\n",c1,c2,c3,c4,c5);
^
src.c:14:2: error: expected identifier or '(' before 'return'
return 0;
^
src.c:26:1: error: expected identifier or '(' before '}' token
}
^