QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#198551#5118. HotelHuangHanShengCompile Error//C++14514b2023-10-03 14:44:442023-10-03 14:44:44

详细

answer.code: In function ‘int main()’:
answer.code:14:17: error: ‘memset’ was not declared in this scope
   14 |                 memset(st, 0, sizeof st);
      |                 ^~~~~~
answer.code:2:1: note: ‘memset’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’?
    1 | #include<iostream>
  +++ |+#include <cstring>
    2 | using namespace std;