记录详情

Accepted

/in/foo.c: In function 'insert':
/in/foo.c:9:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
     for(i=2;m>i;m--)
     ^~~
/in/foo.c:10:18: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
      j[m]=j[m-1];break;
                  ^~~~~
/in/foo.c:6:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  for(i=0;i<n;i++)
  ^~~
/in/foo.c:12:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
   j[i]=x;
   ^
/in/foo.c:13:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
# 状态 耗时 内存占用
#1 Accepted 1ms 228.0 KiB

信息

递交者
类型
自测
题目
A7-5 数组的有序插入函数
语言
C
递交时间
2021-12-23 23:26:23
评测时间
2021-12-23 23:26:23
评测机
分数
10
总耗时
1ms
峰值内存
228.0 KiB