Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
118292 蔡书涵 字符串拼接 C++ Accepted 1 MS 276 KB 181 2025-04-26 17:29:04

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ char a[101],b[101]; int c; cin>>a>>b>>c; strcat(a,b); cout<<a[c-1]<<endl; return 0; }