编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#2195 #1001. 中心字母 Compile Error 0 0 ms 0 K C++ 17 / 209 B t2230026020 2023-11-17 0:31:57
显示原始代码
#include <iostream>
#include <cstring>
using namespace std;
const int N = 99;
int main() {
    char str[N];
    int i = 0;
    gets(str);
    i = strlen(str);

    cout << str[i / 2];
    return 0;
}

编译信息

/sandbox/1/a.cpp: In function 'int main()':
/sandbox/1/a.cpp:8:5: error: 'gets' was not declared in this scope; did you mean 'fgets'?
    8 |     gets(str);
      |     ^~~~
      |     fgets