QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#350405#7933. Build PermutationMaMengQiCompile Error//C991.3kb2024-03-10 18:13:322024-03-10 18:13:32

详细

answer.code: In function ‘solve’:
answer.code:45:20: warning: function returns address of local variable [-Wreturn-local-addr]
   45 |             return c;
      |                    ^
answer.code: In function ‘main’:
answer.code:59:7: error: assignment to expression with array type
   59 |     b = solve(n,a);
      |       ^
answer.code:65:22: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘int *’ [-Wformat=]
   65 |             printf("%d ", &b[i]);
      |                     ~^    ~~~~~
      |                      |    |
      |                      int  int *
      |                     %ls
answer.code:54:5: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
   54 |     scanf("%d", &n);
      |     ^~~~~~~~~~~~~~~
answer.code:57:13: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
   57 |             scanf("%d", &a[i]);
      |             ^~~~~~~~~~~~~~~~~~