记录详情

Compile Error

/in/foo.c: In function 'MergeSubs':
/in/foo.c:31:29: error: redeclaration of 'temp' with no linkage
   31 |                         int temp[n];
      |                             ^~~~
/in/foo.c:15:30: note: previous declaration of 'temp' with type 'int[n]'
   15 |             int end2 = i;int temp[n];
      |                              ^~~~
/in/foo.c:32:17: error: redefinition of 'k'
   32 |             int k = 0;
      |                 ^
/in/foo.c:16:17: note: previous definition of 'k' with type 'int'
   16 |             int k = 0;
      |                 ^
/in/foo.c:33:17: error: redefinition of 'j1'
   33 |             int j1 = start1, j2 = start2;
      |                 ^~
/in/foo.c:17:17: note: previous definition of 'j1' with type 'int'
   17 |             int j1 = start1, j2 = start2;
      |                 ^~
/in/foo.c:33:30: error: redefinition of 'j2'
   33 |             int j1 = start1, j2 = start2;
      |                              ^~
/in/foo.c:17:30: note: previous definition of 'j2' with type 'int'
   17 |             int j1 = start1, j2 = start2;
      |                              ^~
/in/foo.c: In function 'main':
/in/foo.c:56:13: warning: 'main' is normally a non-static function [-Wmain]
   56 |         int main() {
      |             ^~~~
/in/foo.c: In function 'main':
/in/foo.c:57:12: error: 'n' undeclared (first use in this function)
   57 |     int a1[n], a2[n];
      |            ^
/in/foo.c:57:12: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:66:9: error: 'cout' undeclared (first use in this function)
   66 |         cout<<"%d ", a1[i]<<endl;
      |         ^~~~
/in/foo.c:66:29: error: 'endl' undeclared (first use in this function)
   66 |         cout<<"%d ", a1[i]<<endl;
      |                             ^~~~
/in/foo.c:66:20: warning: left-hand operand of comma expression has no effect [-Wunused-value]
   66 |         cout<<"%d ", a1[i]<<endl;
      |                    ^
/in/foo.c:71:20: warning: left-hand operand of comma expression has no effect [-Wunused-value]
   71 |         cout<<"%d ", a2[i]<<endl;
      |                    ^
/in/foo.c:75:1: error: expected declaration or statement at end of input
   75 | }
      | ^
/in/foo.c:75:1: error: expected declaration or statement at end of input
/in/foo.c:57:16: warning: unused variable 'a2' [-Wunused-variable]
   57 |     int a1[n], a2[n];
      |                ^~
/in/foo.c:57:9: warning: unused variable 'a1' [-Wunused-variable]
   57 |     int a1[n], a2[n];
      |         ^~
/in/foo.c: In function 'main':
/in/foo.c:75:1: error: expected declaration or statement at end of input
   75 | }
      | ^
/in/foo.c: At top level:
/in/foo.c:56:13: warning: 'main' defined but not used [-Wunused-function]
   56 |         int main() {
      |             ^~~~

信息

递交者
类型
递交
题目
A10-2 有序子序列的合并
比赛
2025年春 南师大《程序设计与竞赛》作业赛第三场
语言
C
递交时间
2025-03-22 21:00:40
评测时间
2025-03-22 21:00:40
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes