编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#2197 #1001. 中心字母 Compile Error 0 0 ms 0 K C++ 17 (Clang) / 209 B t2230026020 2023-11-17 0:32:55
显示原始代码
#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:8:5: error: use of undeclared identifier 'gets'
    gets(str);
    ^
1 error generated.