Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
133517 石水生 墓碑上的字符 C++ Compile Error 0 MS 0 KB 229 2025-10-19 10:23:08

Tests(0/0):


Code:

#include <bits\stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ string s; string s1; cin>>s>>s1; //cout<<s<<" "<<s1<<endl; s.insert(s.length()/2,s1); cout<<s<<endl; } }


Run Info:

Main.cc:1:25: fatal error: bits\stdc++.h: No such file or directory
 #include 
                         ^
compilation terminated.