记录详情

Compile Error

/in/foo.c: In function 'main':
/in/foo.c:4:23: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<' token
    4 |         int n1, n2, n1<10000, n2<10000;
      |                       ^
/in/foo.c:5:17: error: 'MAX_SIZE' undeclared (first use in this function)
    5 |         int id1[MAX_SIZE], id2[MAX_SIZE];
      |                 ^~~~~~~~
/in/foo.c:5:17: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:6:19: error: 'MAX_ID' undeclared (first use in this function)
    6 |     int isPresent[MAX_ID] = {0};
      |                   ^~~~~~
/in/foo.c:9:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<' token
    9 |         for(int i=0,i<n1,i++)
      |                      ^
/in/foo.c:15:5: error: expected expression before '}' token
   15 |     }
      |     ^
/in/foo.c:15:5: error: expected expression before '}' token
/in/foo.c:15:5: error: expected expression before '}' token
/in/foo.c:9:17: warning: unused variable 'i' [-Wunused-variable]
    9 |         for(int i=0,i<n1,i++)
      |                 ^
/in/foo.c:7:9: warning: unused variable 'count' [-Wunused-variable]
    7 |     int count = 0;
      |         ^~~~~
/in/foo.c:6:9: warning: unused variable 'isPresent' [-Wunused-variable]
    6 |     int isPresent[MAX_ID] = {0};
      |         ^~~~~~~~~
/in/foo.c:5:28: warning: unused variable 'id2' [-Wunused-variable]
    5 |         int id1[MAX_SIZE], id2[MAX_SIZE];
      |                            ^~~
/in/foo.c:5:13: warning: unused variable 'id1' [-Wunused-variable]
    5 |         int id1[MAX_SIZE], id2[MAX_SIZE];
      |             ^~~
/in/foo.c: At top level:
/in/foo.c:16:9: error: expected identifier or '(' before 'for'
   16 |         for(int i=0,i<n2,i++)
      |         ^~~
/in/foo.c:22:9: error: expected identifier or '(' before '}' token
   22 |         }
      |         ^
/in/foo.c:23:13: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<<' token
   23 |         cout<<"%d\n", count<<endl;
      |             ^~
/in/foo.c:24:5: error: expected identifier or '(' before 'return'
   24 |     return 0;
      |     ^~~~~~
/in/foo.c:25:1: error: expected identifier or '(' before '}' token
   25 | }
      | ^

信息

递交者
类型
递交
题目
2-3 参赛人数
比赛
2025年春 南师大《程序设计与竞赛》作业赛第三场
语言
C
递交时间
2025-03-22 19:47:03
评测时间
2025-03-22 19:47:03
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes